Skip to content

Commit e71bcfc

Browse files
committedOct 3, 2012
change window title depending on action
1 parent 7bff3cf commit e71bcfc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/gui/symbology-ng/qgsstylev2exportimportdialog.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ QgsStyleV2ExportImportDialog::QgsStyleV2ExportImportDialog( QgsStyleV2* style, Q
5858

5959
if ( mDialogMode == Import )
6060
{
61+
setWindowTitle( tr( "Import style(s)" ) );
6162
// populate the import types
6263
importTypeCombo->addItem( "file specified below", QVariant( "file" ) );
6364
// importTypeCombo->addItem( "official QGIS repo online", QVariant( "official" ) );
@@ -79,6 +80,7 @@ QgsStyleV2ExportImportDialog::QgsStyleV2ExportImportDialog( QgsStyleV2* style, Q
7980
}
8081
else
8182
{
83+
setWindowTitle( tr( "Export style(s)" ) );
8284
// hide import specific controls when exporting
8385
btnBrowse->setHidden( true );
8486
fromLabel->setHidden( true );

0 commit comments

Comments
 (0)
Please sign in to comment.