From: mzn Date: Tue, 15 Aug 2006 12:18:02 +0000 (+0000) Subject: Fix for bug IPAL13198(Name of the dialog box for import preferences). X-Git-Tag: For_OCT_611~3 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=8d9acd1c19ff1b89259d2ad0b483bc186283c58f;p=modules%2Fgui.git Fix for bug IPAL13198(Name of the dialog box for import preferences). --- diff --git a/src/LightApp/LightApp_PreferencesDlg.cxx b/src/LightApp/LightApp_PreferencesDlg.cxx index e15c16832..b691eb459 100644 --- a/src/LightApp/LightApp_PreferencesDlg.cxx +++ b/src/LightApp/LightApp_PreferencesDlg.cxx @@ -143,7 +143,8 @@ void LightApp_PreferencesDlg::onImportPref() if( !mgr ) return; - QFileDialog dlg( ".", "*", this, "", tr( "IMPORT_PREFERENCES" ) ); + QFileDialog dlg( ".", "*", this, "" ); + dlg.setCaption( tr("IMPORT_PREFERENCES") ); dlg.setShowHiddenFiles( true ); dlg.exec(); QString fname = dlg.selectedFile();