Skip to content

Commit 7494fae

Browse files
DelazJnyalldawson
authored andcommittedJan 20, 2018
Add book title capitalization to panels
1 parent 776fa23 commit 7494fae

22 files changed

+29
-29
lines changed
 

‎src/app/layout/qgslayoutattributetablewidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ QgsLayoutAttributeTableWidget::QgsLayoutAttributeTableWidget( QgsLayoutFrame *fr
6969
connect( mHideEmptyBgCheckBox, &QCheckBox::toggled, this, &QgsLayoutAttributeTableWidget::mHideEmptyBgCheckBox_toggled );
7070
connect( mWrapBehaviorComboBox, static_cast<void ( QComboBox::* )( int )>( &QComboBox::currentIndexChanged ), this, &QgsLayoutAttributeTableWidget::mWrapBehaviorComboBox_currentIndexChanged );
7171
connect( mAdvancedCustomisationButton, &QPushButton::clicked, this, &QgsLayoutAttributeTableWidget::mAdvancedCustomisationButton_clicked );
72-
setPanelTitle( tr( "Table properties" ) );
72+
setPanelTitle( tr( "Table Properties" ) );
7373

7474
mContentFontToolButton->setMode( QgsFontButton::ModeQFont );
7575
mHeaderFontToolButton->setMode( QgsFontButton::ModeQFont );

‎src/app/layout/qgslayouthtmlwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ QgsLayoutHtmlWidget::QgsLayoutHtmlWidget( QgsLayoutFrame *frame )
4646
connect( mAddFramePushButton, &QPushButton::clicked, this, &QgsLayoutHtmlWidget::mAddFramePushButton_clicked );
4747
connect( mEmptyFrameCheckBox, &QCheckBox::toggled, this, &QgsLayoutHtmlWidget::mEmptyFrameCheckBox_toggled );
4848
connect( mHideEmptyBgCheckBox, &QCheckBox::toggled, this, &QgsLayoutHtmlWidget::mHideEmptyBgCheckBox_toggled );
49-
setPanelTitle( tr( "HTML properties" ) );
49+
setPanelTitle( tr( "HTML Properties" ) );
5050

5151
//setup html editor
5252
mHtmlEditor = new QgsCodeEditorHTML( this );

‎src/app/layout/qgslayoutlabelwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ QgsLayoutLabelWidget::QgsLayoutLabelWidget( QgsLayoutItemLabel *label )
4444
connect( mTopRadioButton, &QRadioButton::clicked, this, &QgsLayoutLabelWidget::mTopRadioButton_clicked );
4545
connect( mBottomRadioButton, &QRadioButton::clicked, this, &QgsLayoutLabelWidget::mBottomRadioButton_clicked );
4646
connect( mMiddleRadioButton, &QRadioButton::clicked, this, &QgsLayoutLabelWidget::mMiddleRadioButton_clicked );
47-
setPanelTitle( tr( "Label properties" ) );
47+
setPanelTitle( tr( "Label Properties" ) );
4848

4949
mFontButton->setMode( QgsFontButton::ModeQFont );
5050

‎src/app/layout/qgslayoutlegendwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ QgsLayoutLegendWidget::QgsLayoutLegendWidget( QgsLayoutItemLegend *legend )
101101
connect( mAddGroupToolButton, &QToolButton::clicked, this, &QgsLayoutLegendWidget::mAddGroupToolButton_clicked );
102102
connect( mFilterLegendByAtlasCheckBox, &QCheckBox::toggled, this, &QgsLayoutLegendWidget::mFilterLegendByAtlasCheckBox_toggled );
103103
connect( mItemTreeView, &QgsLayerTreeView::doubleClicked, this, &QgsLayoutLegendWidget::mItemTreeView_doubleClicked );
104-
setPanelTitle( tr( "Legend properties" ) );
104+
setPanelTitle( tr( "Legend Properties" ) );
105105

106106
mTitleFontButton->setMode( QgsFontButton::ModeQFont );
107107
mGroupFontButton->setMode( QgsFontButton::ModeQFont );

‎src/app/layout/qgslayoutmapgridwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ QgsLayoutMapGridWidget::QgsLayoutMapGridWidget( QgsLayoutItemMapGrid *mapGrid, Q
7474
connect( mCoordinatePrecisionSpinBox, static_cast < void ( QSpinBox::* )( int ) > ( &QSpinBox::valueChanged ), this, &QgsLayoutMapGridWidget::mCoordinatePrecisionSpinBox_valueChanged );
7575
connect( mDistanceToMapFrameSpinBox, static_cast < void ( QDoubleSpinBox::* )( double ) > ( &QDoubleSpinBox::valueChanged ), this, &QgsLayoutMapGridWidget::mDistanceToMapFrameSpinBox_valueChanged );
7676
connect( mAnnotationFontColorButton, &QgsColorButton::colorChanged, this, &QgsLayoutMapGridWidget::mAnnotationFontColorButton_colorChanged );
77-
setPanelTitle( tr( "Map grid properties" ) );
77+
setPanelTitle( tr( "Map Grid Properties" ) );
7878

7979
mAnnotationFontButton->setMode( QgsFontButton::ModeQFont );
8080

‎src/app/layout/qgslayoutmapwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ QgsLayoutMapWidget::QgsLayoutMapWidget( QgsLayoutItemMap *item )
7575
connect( mOverviewCheckBox, &QgsCollapsibleGroupBoxBasic::toggled, this, &QgsLayoutMapWidget::mOverviewCheckBox_toggled );
7676
connect( mOverviewListWidget, &QListWidget::currentItemChanged, this, &QgsLayoutMapWidget::mOverviewListWidget_currentItemChanged );
7777
connect( mOverviewListWidget, &QListWidget::itemChanged, this, &QgsLayoutMapWidget::mOverviewListWidget_itemChanged );
78-
setPanelTitle( tr( "Map properties" ) );
78+
setPanelTitle( tr( "Map Properties" ) );
7979
mMapRotationSpinBox->setClearValue( 0 );
8080

8181
//add widget for general composer item properties

‎src/app/layout/qgslayoutpicturewidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ QgsLayoutPictureWidget::QgsLayoutPictureWidget( QgsLayoutItemPicture *picture )
5252
connect( mStrokeWidthSpinBox, static_cast < void ( QDoubleSpinBox::* )( double ) > ( &QDoubleSpinBox::valueChanged ), this, &QgsLayoutPictureWidget::mStrokeWidthSpinBox_valueChanged );
5353
connect( mPictureRotationOffsetSpinBox, static_cast < void ( QDoubleSpinBox::* )( double ) > ( &QDoubleSpinBox::valueChanged ), this, &QgsLayoutPictureWidget::mPictureRotationOffsetSpinBox_valueChanged );
5454
connect( mNorthTypeComboBox, static_cast<void ( QComboBox::* )( int )>( &QComboBox::currentIndexChanged ), this, &QgsLayoutPictureWidget::mNorthTypeComboBox_currentIndexChanged );
55-
setPanelTitle( tr( "Picture properties" ) );
55+
setPanelTitle( tr( "Picture Properties" ) );
5656

5757
mFillColorButton->setAllowOpacity( true );
5858
mFillColorButton->setColorDialogTitle( tr( "Select Fill Color" ) );

‎src/app/layout/qgslayoutpolygonwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ QgsLayoutPolygonWidget::QgsLayoutPolygonWidget( QgsLayoutItemPolygon *polygon )
2727
, mPolygon( polygon )
2828
{
2929
setupUi( this );
30-
setPanelTitle( tr( "Polygon properties" ) );
30+
setPanelTitle( tr( "Polygon Properties" ) );
3131

3232
//add widget for general composer item properties
3333
mItemPropertiesWidget = new QgsLayoutItemPropertiesWidget( this, polygon );

‎src/app/layout/qgslayoutpolylinewidget.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ QgsLayoutPolylineWidget::QgsLayoutPolylineWidget( QgsLayoutItemPolyline *polylin
2828
, mPolyline( polyline )
2929
{
3030
setupUi( this );
31-
setPanelTitle( tr( "Polyline properties" ) );
31+
setPanelTitle( tr( "Polyline Properties" ) );
3232

3333
connect( mStrokeWidthSpinBox, static_cast < void ( QDoubleSpinBox::* )( double ) > ( &QDoubleSpinBox::valueChanged ), this, &QgsLayoutPolylineWidget::arrowStrokeWidthChanged );
3434
connect( mArrowHeadWidthSpinBox, static_cast < void ( QDoubleSpinBox::* )( double ) > ( &QDoubleSpinBox::valueChanged ), this, &QgsLayoutPolylineWidget::arrowHeadWidthChanged );
@@ -44,7 +44,7 @@ QgsLayoutPolylineWidget::QgsLayoutPolylineWidget( QgsLayoutItemPolyline *polylin
4444
connect( mEndMarkerLineEdit, &QLineEdit::textChanged, this, &QgsLayoutPolylineWidget::mEndMarkerLineEdit_textChanged );
4545
connect( mStartMarkerToolButton, &QToolButton::clicked, this, &QgsLayoutPolylineWidget::mStartMarkerToolButton_clicked );
4646
connect( mEndMarkerToolButton, &QToolButton::clicked, this, &QgsLayoutPolylineWidget::mEndMarkerToolButton_clicked );
47-
setPanelTitle( tr( "Arrow properties" ) );
47+
setPanelTitle( tr( "Arrow Properties" ) );
4848
QButtonGroup *startMarkerGroup = new QButtonGroup( this );
4949
startMarkerGroup->addButton( mRadioStartNoMarker );
5050
startMarkerGroup->addButton( mRadioStartArrow );

‎src/app/layout/qgslayoutpropertieswidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ QgsLayoutPropertiesWidget::QgsLayoutPropertiesWidget( QWidget *parent, QgsLayout
2828
Q_ASSERT( mLayout );
2929

3030
setupUi( this );
31-
setPanelTitle( tr( "Layout properties" ) );
31+
setPanelTitle( tr( "Layout Properties" ) );
3232
blockSignals( true );
3333

3434
updateSnappingElements();

‎src/app/layout/qgslayoutscalebarwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ QgsLayoutScaleBarWidget::QgsLayoutScaleBarWidget( QgsLayoutItemScaleBar *scaleBa
4848
connect( mLineCapStyleCombo, static_cast<void ( QComboBox::* )( int )>( &QComboBox::currentIndexChanged ), this, &QgsLayoutScaleBarWidget::mLineCapStyleCombo_currentIndexChanged );
4949
connect( mMinWidthSpinBox, static_cast < void ( QDoubleSpinBox::* )( double ) > ( &QDoubleSpinBox::valueChanged ), this, &QgsLayoutScaleBarWidget::mMinWidthSpinBox_valueChanged );
5050
connect( mMaxWidthSpinBox, static_cast < void ( QDoubleSpinBox::* )( double ) > ( &QDoubleSpinBox::valueChanged ), this, &QgsLayoutScaleBarWidget::mMaxWidthSpinBox_valueChanged );
51-
setPanelTitle( tr( "Scalebar properties" ) );
51+
setPanelTitle( tr( "Scalebar Properties" ) );
5252

5353
mFontButton->setMode( QgsFontButton::ModeQFont );
5454

‎src/app/layout/qgslayoutshapewidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ QgsLayoutShapeWidget::QgsLayoutShapeWidget( QgsLayoutItemShape *shape )
3030
setupUi( this );
3131
connect( mShapeComboBox, static_cast<void ( QComboBox::* )( const QString & )>( &QComboBox::currentIndexChanged ), this, &QgsLayoutShapeWidget::mShapeComboBox_currentIndexChanged );
3232
connect( mCornerRadiusSpinBox, static_cast < void ( QDoubleSpinBox::* )( double ) > ( &QDoubleSpinBox::valueChanged ), this, &QgsLayoutShapeWidget::mCornerRadiusSpinBox_valueChanged );
33-
setPanelTitle( tr( "Shape properties" ) );
33+
setPanelTitle( tr( "Shape Properties" ) );
3434

3535
//add widget for general composer item properties
3636
mItemPropertiesWidget = new QgsLayoutItemPropertiesWidget( this, shape );

‎src/app/qgsrulebasedlabelingwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ void QgsRuleBasedLabelingWidget::editRule( const QModelIndex &index )
166166
QgsRuleBasedLabeling::Rule *rule = mModel->ruleForIndex( index );
167167

168168
QgsLabelingRulePropsWidget *widget = new QgsLabelingRulePropsWidget( rule, mLayer, this, mCanvas );
169-
widget->setPanelTitle( tr( "Edit rule" ) );
169+
widget->setPanelTitle( tr( "Edit Rule" ) );
170170
connect( widget, &QgsPanelWidget::panelAccepted, this, &QgsRuleBasedLabelingWidget::ruleWidgetPanelAccepted );
171171
connect( widget, &QgsLabelingRulePropsWidget::widgetChanged, this, &QgsRuleBasedLabelingWidget::liveUpdateRuleFromPanel );
172172
openPanel( widget );

‎src/gui/qgscolorrampbutton.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ void QgsColorRampButton::showColorRampDialog()
101101
if ( panelMode )
102102
{
103103
QgsLimitedRandomColorRampWidget *widget = new QgsLimitedRandomColorRampWidget( *randRamp, this );
104-
widget->setPanelTitle( tr( "Edit ramp" ) );
104+
widget->setPanelTitle( tr( "Edit Ramp" ) );
105105
connect( widget, &QgsLimitedRandomColorRampWidget::changed, this, &QgsColorRampButton::rampWidgetUpdated );
106106
panel->openPanel( widget );
107107
}
@@ -120,7 +120,7 @@ void QgsColorRampButton::showColorRampDialog()
120120
if ( panelMode )
121121
{
122122
QgsPresetColorRampWidget *widget = new QgsPresetColorRampWidget( *presetRamp, this );
123-
widget->setPanelTitle( tr( "Edit ramp" ) );
123+
widget->setPanelTitle( tr( "Edit Ramp" ) );
124124
connect( widget, &QgsPresetColorRampWidget::changed, this, &QgsColorRampButton::rampWidgetUpdated );
125125
panel->openPanel( widget );
126126
}
@@ -139,7 +139,7 @@ void QgsColorRampButton::showColorRampDialog()
139139
if ( panelMode )
140140
{
141141
QgsColorBrewerColorRampWidget *widget = new QgsColorBrewerColorRampWidget( *brewerRamp, this );
142-
widget->setPanelTitle( tr( "Edit ramp" ) );
142+
widget->setPanelTitle( tr( "Edit Ramp" ) );
143143
connect( widget, &QgsColorBrewerColorRampWidget::changed, this, &QgsColorRampButton::rampWidgetUpdated );
144144
panel->openPanel( widget );
145145
}

‎src/gui/qgscolorschemelist.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ bool QgsColorSwatchDelegate::editorEvent( QEvent *event, QAbstractItemModel *mod
760760
if ( panel && panel->dockMode() )
761761
{
762762
QgsCompoundColorWidget *colorWidget = new QgsCompoundColorWidget( panel, color, QgsCompoundColorWidget::LayoutVertical );
763-
colorWidget->setPanelTitle( tr( "Select color" ) );
763+
colorWidget->setPanelTitle( tr( "Select Color" ) );
764764
colorWidget->setAllowOpacity( true );
765765
colorWidget->setProperty( "index", index );
766766
connect( colorWidget, &QgsCompoundColorWidget::currentColorChanged, this, &QgsColorSwatchDelegate::colorChanged );

‎src/gui/qgsunitselectionwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ void QgsUnitSelectionWidget::showDialog()
226226
if ( panel && panel->dockMode() )
227227
{
228228
QgsMapUnitScaleWidget *widget = new QgsMapUnitScaleWidget( panel );
229-
widget->setPanelTitle( tr( "Adjust scaling range" ) );
229+
widget->setPanelTitle( tr( "Adjust Scaling Range" ) );
230230
widget->setMapCanvas( mCanvas );
231231
widget->setMapUnitScale( mMapUnitScale );
232232
connect( widget, &QgsMapUnitScaleWidget::mapUnitScaleChanged, this, &QgsUnitSelectionWidget::widgetChanged );

‎src/gui/raster/qgspalettedrendererwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ void QgsPalettedRendererWidget::changeColor()
231231
if ( panel && panel->dockMode() )
232232
{
233233
QgsCompoundColorWidget *colorWidget = new QgsCompoundColorWidget( panel, currentColor, QgsCompoundColorWidget::LayoutVertical );
234-
colorWidget->setPanelTitle( tr( "Select color" ) );
234+
colorWidget->setPanelTitle( tr( "Select Color" ) );
235235
colorWidget->setAllowOpacity( true );
236236
connect( colorWidget, &QgsCompoundColorWidget::currentColorChanged, this, [ = ]( const QColor & color ) { setSelectionColor( sel, color ); } );
237237
panel->openPanel( colorWidget );

‎src/gui/symbology/qgsdatadefinedsizelegendwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ QgsDataDefinedSizeLegendWidget::QgsDataDefinedSizeLegendWidget( const QgsDataDef
3636
, mMapCanvas( canvas )
3737
{
3838
setupUi( this );
39-
setPanelTitle( tr( "Data-defined size legend" ) );
39+
setPanelTitle( tr( "Data-defined Size Legend" ) );
4040

4141
QgsMarkerSymbol *symbol = nullptr;
4242

‎src/gui/symbology/qgspointclusterrendererwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ void QgsPointClusterRendererWidget::mRendererSettingsButton_clicked()
149149
if ( m )
150150
{
151151
QgsRendererWidget *w = m->createRendererWidget( mLayer, mStyle, mRenderer->embeddedRenderer()->clone() );
152-
w->setPanelTitle( tr( "Renderer settings" ) );
152+
w->setPanelTitle( tr( "Renderer Settings" ) );
153153

154154
QgsExpressionContextScope scope;
155155
scope.addVariable( QgsExpressionContextScope::StaticVariable( QgsExpressionContext::EXPR_CLUSTER_COLOR, "", true ) );

‎src/gui/symbology/qgspointdisplacementrendererwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ void QgsPointDisplacementRendererWidget::mRendererSettingsButton_clicked()
264264
if ( m )
265265
{
266266
QgsRendererWidget *w = m->createRendererWidget( mLayer, mStyle, mRenderer->embeddedRenderer()->clone() );
267-
w->setPanelTitle( tr( "Renderer settings" ) );
267+
w->setPanelTitle( tr( "Renderer Settings" ) );
268268

269269
QgsSymbolWidgetContext context = mContext;
270270

‎src/gui/symbology/qgsrulebasedrendererwidget.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ void QgsRuleBasedRendererWidget::editRule( const QModelIndex &index )
183183
QgsRuleBasedRenderer::Rule *rule = mModel->ruleForIndex( index );
184184

185185
QgsRendererRulePropsWidget *widget = new QgsRendererRulePropsWidget( rule, mLayer, mStyle, this, mContext );
186-
widget->setPanelTitle( tr( "Edit rule" ) );
186+
widget->setPanelTitle( tr( "Edit Rule" ) );
187187
connect( widget, &QgsPanelWidget::panelAccepted, this, &QgsRuleBasedRendererWidget::ruleWidgetPanelAccepted );
188188
connect( widget, &QgsPanelWidget::widgetChanged, this, &QgsRuleBasedRendererWidget::liveUpdateRuleFromPanel );
189189
openPanel( widget );
@@ -260,7 +260,7 @@ void QgsRuleBasedRendererWidget::refineRuleScales()
260260
void QgsRuleBasedRendererWidget::refineRuleCategoriesGui()
261261
{
262262
QgsCategorizedSymbolRendererWidget *w = new QgsCategorizedSymbolRendererWidget( mLayer, mStyle, nullptr );
263-
w->setPanelTitle( tr( "Add categories to rules" ) );
263+
w->setPanelTitle( tr( "Add Categories to Rules" ) );
264264
connect( w, &QgsPanelWidget::panelAccepted, this, &QgsRuleBasedRendererWidget::refineRuleCategoriesAccepted );
265265
w->setContext( mContext );
266266
openPanel( w );
@@ -269,7 +269,7 @@ void QgsRuleBasedRendererWidget::refineRuleCategoriesGui()
269269
void QgsRuleBasedRendererWidget::refineRuleRangesGui()
270270
{
271271
QgsGraduatedSymbolRendererWidget *w = new QgsGraduatedSymbolRendererWidget( mLayer, mStyle, nullptr );
272-
w->setPanelTitle( tr( "Add ranges to rules" ) );
272+
w->setPanelTitle( tr( "Add Ranges to Rules" ) );
273273
connect( w, &QgsPanelWidget::panelAccepted, this, &QgsRuleBasedRendererWidget::refineRuleRangesAccepted );
274274
w->setContext( mContext );
275275
openPanel( w );
@@ -284,13 +284,13 @@ void QgsRuleBasedRendererWidget::refineRuleScalesGui( const QModelIndexList &ind
284284
// If any of the rules don't have a symbol let the user know and exit.
285285
if ( !initialRule->symbol() )
286286
{
287-
QMessageBox::warning( this, tr( "Scale refinement" ), tr( "Parent rule %1 must have a symbol for this operation." ).arg( initialRule->label() ) );
287+
QMessageBox::warning( this, tr( "Scale Refinement" ), tr( "Parent rule %1 must have a symbol for this operation." ).arg( initialRule->label() ) );
288288
return;
289289
}
290290
}
291291

292292
QString txt = QInputDialog::getText( this,
293-
tr( "Scale refinement" ),
293+
tr( "Scale Refinement" ),
294294
tr( "Please enter scale denominators at which will split the rule, separate them by commas (e.g. 1000,5000):" ) );
295295
if ( txt.isEmpty() )
296296
return;

‎src/gui/symbology/qgssymbolselectordialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ QgsSymbolSelectorWidget::QgsSymbolSelectorWidget( QgsSymbol *symbol, QgsStyle *s
267267
QModelIndex newIndex = layersTree->model()->index( 0, 0 );
268268
layersTree->setCurrentIndex( newIndex );
269269

270-
setPanelTitle( tr( "Symbol selector" ) );
270+
setPanelTitle( tr( "Symbol Selector" ) );
271271
}
272272

273273
QMenu *QgsSymbolSelectorWidget::advancedMenu()

0 commit comments

Comments
 (0)
Please sign in to comment.