Skip to content

Commit 8697c79

Browse files
committed
[needs-docs][ui] harmonize title of panels
1 parent bc23f1d commit 8697c79

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

python/plugins/processing/ui/ProcessingToolbox.ui

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</rect>
1212
</property>
1313
<property name="windowTitle">
14-
<string>Processing Toolbox</string>
14+
<string>Processing Toolbox Panel</string>
1515
</property>
1616
<widget class="QWidget" name="dockWidgetContents">
1717
<layout class="QVBoxLayout" name="verticalLayout">

python/plugins/processing/ui/resultsdockbase.ui

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</rect>
1212
</property>
1313
<property name="windowTitle">
14-
<string>Processing results viewer</string>
14+
<string>Results Viewer Panel</string>
1515
</property>
1616
<widget class="QWidget" name="dockWidgetContents">
1717
<layout class="QVBoxLayout" name="verticalLayout">

src/app/qgisapp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ QgisApp::QgisApp( QSplashScreen *splash, bool restorePlugins, bool skipVersionCh
899899

900900
startProfile( QStringLiteral( "Layer Style dock" ) );
901901
mMapStylingDock = new QgsDockWidget( this );
902-
mMapStylingDock->setWindowTitle( tr( "Layer Styling" ) );
902+
mMapStylingDock->setWindowTitle( tr( "Layer Styling Panel" ) );
903903
mMapStylingDock->setObjectName( QStringLiteral( "LayerStyling" ) );
904904
mMapStyleWidget = new QgsLayerStylingWidget( mMapCanvas, mMapLayerPanelFactories );
905905
mMapStylingDock->setWidget( mMapStyleWidget );

src/app/qgsidentifyresultsdialog.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ QgsIdentifyResultsDialog::QgsIdentifyResultsDialog( QgsMapCanvas *canvas, QWidge
326326
mOpenFormAction->setDisabled( true );
327327

328328
QgsSettings mySettings;
329-
mDock = new QgsDockWidget( tr( "Identify Results" ), QgisApp::instance() );
329+
mDock = new QgsDockWidget( tr( "Identify Results Panel" ), QgisApp::instance() );
330330
mDock->setObjectName( QStringLiteral( "IdentifyResultsDock" ) );
331331
mDock->setAllowedAreas( Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea );
332332
mDock->setWidget( this );

src/ui/qgsidentifyresultsbase.ui

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</rect>
1212
</property>
1313
<property name="windowTitle">
14-
<string>Identify Results</string>
14+
<string>Identify Results Panel</string>
1515
</property>
1616
<layout class="QVBoxLayout" name="verticalLayout_4">
1717
<property name="spacing">

0 commit comments

Comments
 (0)