[vlc-devel] commit: Fix previous commit logic... Copy/Paste error. ( Jean-Baptiste Kempf )

git version control git at videolan.org
Sun Aug 24 20:49:06 CEST 2008


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Aug 24 11:50:34 2008 -0700| [f649e3bd27956ed5489d9bac95ac799023caaa51] | committer: Jean-Baptiste Kempf 

Fix previous commit logic... Copy/Paste error.

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

 modules/gui/qt4/components/open_panels.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/gui/qt4/components/open_panels.cpp b/modules/gui/qt4/components/open_panels.cpp
index 21e18a4..9d922ac 100644
--- a/modules/gui/qt4/components/open_panels.cpp
+++ b/modules/gui/qt4/components/open_panels.cpp
@@ -191,12 +191,12 @@ void FileOpenPanel::accept()
 
 void FileOpenBox::accept()
 {
-    OpenDialog::getInstance( NULL, NULL, true )->cancel();
+    OpenDialog::getInstance( NULL, NULL, true )->selectSlots();
 }
 
 void FileOpenBox::reject()
 {
-    OpenDialog::getInstance( NULL, NULL, true )->selectSlots();
+    OpenDialog::getInstance( NULL, NULL, true )->cancel();
 }
 
 /* Function called by Open Dialog when clicked on cancel */




More information about the vlc-devel mailing list