Skip to content
Permalink
Browse files
[needs-docs][ui] harmonize title of panels
  • 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.
@@ -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">
@@ -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">
@@ -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 );
@@ -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 );
@@ -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">

0 comments on commit 8697c79

Please sign in to comment.