diff options
author | Arno <arno@disconnect.de> | 2018-11-24 17:36:48 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-11-24 17:36:48 +0100 |
commit | 0d058fda9189f6bf96c70d71ffe1d18ca433e046 (patch) | |
tree | dcb50ff3de2f8a609209f5ecd92d2774f19abe4c /playerwidget.h | |
parent | aaf87a077c22cb2491480c8802595edb3e41c944 (diff) | |
download | BeetPlayer-0d058fda9189f6bf96c70d71ffe1d18ca433e046.tar.gz BeetPlayer-0d058fda9189f6bf96c70d71ffe1d18ca433e046.tar.bz2 BeetPlayer-0d058fda9189f6bf96c70d71ffe1d18ca433e046.zip |
Fix some clang warnings
Diffstat (limited to 'playerwidget.h')
-rw-r--r-- | playerwidget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/playerwidget.h b/playerwidget.h index 1ace3fc..15da4fa 100644 --- a/playerwidget.h +++ b/playerwidget.h @@ -80,7 +80,7 @@ class PlayerWidget : public QWidget { void viewModeChanged(const QString &viewMode); void playModeChanged(const QString &playMode); void numFilesChanged(int numFiles); - void playListLengthChanged(quint64 secs); + void playListLengthChanged(qint64 secs); void message(const QString &msg); void modelChanged(); void setWinTitle(const QString &title); @@ -117,7 +117,7 @@ class PlayerWidget : public QWidget { QAction *mPauseA; QAction *mViewByAlbumsA; int mDurSecs; - quint64 mPlayListLength; + qint64 mPlayListLength; QString mCurWinTitle; QString mCurToolTip; QSystemTrayIcon *mTrayIcon; |