]> git.sesse.net Git - vlc/commitdiff
Qt: mark some functions as virtual
authorJean-Baptiste Kempf <jb@videolan.org>
Sun, 1 Apr 2012 08:38:34 +0000 (10:38 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 1 Apr 2012 09:07:16 +0000 (11:07 +0200)
modules/gui/qt4/components/open_panels.hpp

index 44a08303598bbcb5f2d8af78d358fe22c72f4846..137afb591a030346fbd32f469c4a8c0815fd2ec0 100644 (file)
@@ -140,8 +140,8 @@ public:
     NetOpenPanel( QWidget *, intf_thread_t * );
     virtual ~NetOpenPanel();
     virtual void clear() ;
-    void onFocus();
-    void onAccept();
+    virtual void onFocus();
+    virtual void onAccept();
 private:
     Ui::OpenNetwork ui;
     bool b_recentList;
@@ -175,7 +175,7 @@ public:
     virtual void clear() ;
     virtual void accept() ;
 #ifdef WIN32
-    void onFocus();
+    virtual void onFocus();
 #endif
 private:
     Ui::OpenDisk ui;