From 8d9acd1c19ff1b89259d2ad0b483bc186283c58f Mon Sep 17 00:00:00 2001 From: mzn Date: Tue, 15 Aug 2006 12:18:02 +0000 Subject: [PATCH] Fix for bug IPAL13198(Name of the dialog box for import preferences). --- src/LightApp/LightApp_PreferencesDlg.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(); -- 2.39.2