Commit 70dab4d4 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: fix reordering warnings

parent cd750a6e
...@@ -89,11 +89,11 @@ public: ...@@ -89,11 +89,11 @@ public:
void setExpandstoHeight( bool b_expand ) { b_expandPixmap = b_expand; } void setExpandstoHeight( bool b_expand ) { b_expandPixmap = b_expand; }
void setWithArt( bool b_withart_ ) { b_withart = b_withart_; }; void setWithArt( bool b_withart_ ) { b_withart = b_withart_; };
private: private:
intf_thread_t *p_intf;
QString pixmapUrl; QString pixmapUrl;
bool b_expandPixmap; bool b_expandPixmap;
bool b_withart; bool b_withart;
virtual void contextMenuEvent( QContextMenuEvent *event ); virtual void contextMenuEvent( QContextMenuEvent *event );
intf_thread_t *p_intf;
protected: protected:
void paintEvent( QPaintEvent *e ); void paintEvent( QPaintEvent *e );
static const int MARGIN = 5; static const int MARGIN = 5;
...@@ -140,9 +140,11 @@ private: ...@@ -140,9 +140,11 @@ private:
bool b_remainingTime; bool b_remainingTime;
int cachedLength; int cachedLength;
QTimer *bufTimer; QTimer *bufTimer;
float bufVal;
bool buffering; bool buffering;
bool showBuffering; bool showBuffering;
float bufVal;
char psz_length[MSTRTIME_MAX_SIZE]; char psz_length[MSTRTIME_MAX_SIZE];
char psz_time[MSTRTIME_MAX_SIZE]; char psz_time[MSTRTIME_MAX_SIZE];
void toggleTimeDisplay(); void toggleTimeDisplay();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment