[vlc-commits] Qt: mark some functions as virtual

Jean-Baptiste Kempf git at videolan.org
Sun Apr 1 12:07:03 CEST 2012


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Apr  1 10:38:34 2012 +0200| [52c300c7540382bc2ac2834fd5bbeab90423cd39] | committer: Jean-Baptiste Kempf

Qt: mark some functions as virtual

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=52c300c7540382bc2ac2834fd5bbeab90423cd39
---

 modules/gui/qt4/components/open_panels.hpp |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/gui/qt4/components/open_panels.hpp b/modules/gui/qt4/components/open_panels.hpp
index 44a0830..137afb5 100644
--- a/modules/gui/qt4/components/open_panels.hpp
+++ b/modules/gui/qt4/components/open_panels.hpp
@@ -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;



More information about the vlc-commits mailing list