]> git.sesse.net Git - vlc/commitdiff
Open Dialog: Close #1912
authorJean-Baptiste Kempf <jb@videolan.org>
Sun, 24 Aug 2008 18:30:43 +0000 (11:30 -0700)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 24 Aug 2008 18:31:39 +0000 (11:31 -0700)
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/components/open_panels.hpp

index 41b7551aa83c1d4b75f594db58e4ed87d0d526f5..8c3cd215e7026b8dee6695d02f0a70a4361530c0 100644 (file)
@@ -194,6 +194,9 @@ void FileOpenBox::accept()
     OpenDialog::getInstance( NULL, NULL, true )->selectSlots();
 }
 
+void FileOpenBox::reject()
+{}
+
 /* Function called by Open Dialog when clicked on cancel */
 void FileOpenPanel::clear()
 {
index e2de731df174e39a114afbb996f9e62fd608fec6..ee973472bc13b5eba315af4f8c6a59775f102180 100644 (file)
@@ -110,6 +110,7 @@ public:
         QFileDialog( parent, caption, directory, filter ) {}
 public slots:
     void accept();
+    void reject();
 };
 
 class FileOpenPanel: public OpenPanel