Commit bf89dc16 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt/VLM:: correctly set the filter.

parent eb254c90
...@@ -264,7 +264,7 @@ bool VLMDialog::exportVLMConf() ...@@ -264,7 +264,7 @@ bool VLMDialog::exportVLMConf()
QString saveVLMConfFileName = QFileDialog::getSaveFileName( QString saveVLMConfFileName = QFileDialog::getSaveFileName(
this, qtr( "Save VLM configuration as..." ), this, qtr( "Save VLM configuration as..." ),
qfu( config_GetHomeDir() ), qfu( config_GetHomeDir() ),
qtr( "VLM conf (*.vlm);;All (*.*)" ) ); qtr( "VLM conf (*.vlm);;All (*)" ) );
if( !saveVLMConfFileName.isEmpty() ) if( !saveVLMConfFileName.isEmpty() )
{ {
...@@ -334,7 +334,7 @@ bool VLMDialog::importVLMConf() ...@@ -334,7 +334,7 @@ bool VLMDialog::importVLMConf()
QString openVLMConfFileName = QFileDialog::getOpenFileName( QString openVLMConfFileName = QFileDialog::getOpenFileName(
this, qtr( "Open VLM configuration..." ), this, qtr( "Open VLM configuration..." ),
qfu( config_GetHomeDir() ), qfu( config_GetHomeDir() ),
qtr( "VLM conf (*.vlm) ;; All (*.*)" ) ); qtr( "VLM conf (*.vlm);;All (*)" ) );
if( !openVLMConfFileName.isEmpty() ) if( !openVLMConfFileName.isEmpty() )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment