[vlc-devel] commit: Qt/VLM:: correctly set the filter. (Jean-Baptiste Kempf )
git version control
git at videolan.org
Fri Dec 19 16:58:43 CET 2008
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Dec 19 16:57:35 2008 +0100| [bf89dc16d4bc6fff1c4bcd53d078f4c046eca11f] | committer: Jean-Baptiste Kempf
Qt/VLM:: correctly set the filter.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bf89dc16d4bc6fff1c4bcd53d078f4c046eca11f
---
modules/gui/qt4/dialogs/vlm.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/dialogs/vlm.cpp b/modules/gui/qt4/dialogs/vlm.cpp
index 6e4bb5a..5798b5e 100644
--- a/modules/gui/qt4/dialogs/vlm.cpp
+++ b/modules/gui/qt4/dialogs/vlm.cpp
@@ -264,7 +264,7 @@ bool VLMDialog::exportVLMConf()
QString saveVLMConfFileName = QFileDialog::getSaveFileName(
this, qtr( "Save VLM configuration as..." ),
qfu( config_GetHomeDir() ),
- qtr( "VLM conf (*.vlm);;All (*.*)" ) );
+ qtr( "VLM conf (*.vlm);;All (*)" ) );
if( !saveVLMConfFileName.isEmpty() )
{
@@ -334,7 +334,7 @@ bool VLMDialog::importVLMConf()
QString openVLMConfFileName = QFileDialog::getOpenFileName(
this, qtr( "Open VLM configuration..." ),
qfu( config_GetHomeDir() ),
- qtr( "VLM conf (*.vlm) ;; All (*.*)" ) );
+ qtr( "VLM conf (*.vlm);;All (*)" ) );
if( !openVLMConfFileName.isEmpty() )
{
More information about the vlc-devel
mailing list