Skip to content

Commit

Permalink
[needs-docs][ui] harmonize title of panels
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Feb 15, 2018
1 parent bc23f1d commit 8697c79
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion python/plugins/processing/ui/ProcessingToolbox.ui
Expand Up @@ -11,7 +11,7 @@
</rect>
</property>
<property name="windowTitle">
<string>Processing Toolbox</string>
<string>Processing Toolbox Panel</string>
</property>
<widget class="QWidget" name="dockWidgetContents">
<layout class="QVBoxLayout" name="verticalLayout">
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/ui/resultsdockbase.ui
Expand Up @@ -11,7 +11,7 @@
</rect>
</property>
<property name="windowTitle">
<string>Processing results viewer</string>
<string>Results Viewer Panel</string>
</property>
<widget class="QWidget" name="dockWidgetContents">
<layout class="QVBoxLayout" name="verticalLayout">
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -899,7 +899,7 @@ QgisApp::QgisApp( QSplashScreen *splash, bool restorePlugins, bool skipVersionCh

startProfile( QStringLiteral( "Layer Style dock" ) );
mMapStylingDock = new QgsDockWidget( this );
mMapStylingDock->setWindowTitle( tr( "Layer Styling" ) );
mMapStylingDock->setWindowTitle( tr( "Layer Styling Panel" ) );
mMapStylingDock->setObjectName( QStringLiteral( "LayerStyling" ) );
mMapStyleWidget = new QgsLayerStylingWidget( mMapCanvas, mMapLayerPanelFactories );
mMapStylingDock->setWidget( mMapStyleWidget );
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgsidentifyresultsdialog.cpp
Expand Up @@ -326,7 +326,7 @@ QgsIdentifyResultsDialog::QgsIdentifyResultsDialog( QgsMapCanvas *canvas, QWidge
mOpenFormAction->setDisabled( true );

QgsSettings mySettings;
mDock = new QgsDockWidget( tr( "Identify Results" ), QgisApp::instance() );
mDock = new QgsDockWidget( tr( "Identify Results Panel" ), QgisApp::instance() );
mDock->setObjectName( QStringLiteral( "IdentifyResultsDock" ) );
mDock->setAllowedAreas( Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea );
mDock->setWidget( this );
Expand Down
2 changes: 1 addition & 1 deletion src/ui/qgsidentifyresultsbase.ui
Expand Up @@ -11,7 +11,7 @@
</rect>
</property>
<property name="windowTitle">
<string>Identify Results</string>
<string>Identify Results Panel</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_4">
<property name="spacing">
Expand Down

0 comments on commit 8697c79

Please sign in to comment.