]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Fix for bug IPAL13198(Name of the dialog box for import preferences).
authormzn <mzn@opencascade.com>
Tue, 15 Aug 2006 12:18:02 +0000 (12:18 +0000)
committermzn <mzn@opencascade.com>
Tue, 15 Aug 2006 12:18:02 +0000 (12:18 +0000)
src/LightApp/LightApp_PreferencesDlg.cxx

index e15c168322a2e160e4607529b1d7c0d0de8b4e59..b691eb459d2246572520efbf658791aec1624e15 100644 (file)
@@ -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();