]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/input_manager.hpp
Drop trailing semicolons
[vlc] / modules / gui / qt4 / input_manager.hpp
index 6a856f151890882ceec39a3407569627b7bb0d32..a85d2940f1f8f0202bda4a64fd727e1f30808804 100644 (file)
@@ -113,7 +113,7 @@ public:
 
 class InputManager : public QObject
 {
-    Q_OBJECT;
+    Q_OBJECT
     friend class MainInputManager;
 
 public:
@@ -144,7 +144,7 @@ private:
     int             i_old_playing_status;
     QString         oldName;
     QString         artUrl;
-    int             i_rate;
+    float           f_rate;
     float           f_cache;
     bool            b_video;
     mtime_t         timeA, timeB;
@@ -204,7 +204,7 @@ signals:
     /// Send new position, new time and new length
     void positionUpdated( float , int64_t, int );
     void seekRequested( float pos );
-    void rateChanged( int );
+    void rateChanged( float );
     void nameChanged( const QString& );
     /// Used to signal whether we should show navigation buttons
     void titleChanged( bool );
@@ -238,7 +238,7 @@ signals:
 
 class MainInputManager : public QObject
 {
-    Q_OBJECT;
+    Q_OBJECT
 public:
     static MainInputManager *getInstance( intf_thread_t *_p_intf )
     {