Skip to content

Commit 3b3d901

Browse files
DelazJnyalldawson
authored andcommittedJan 14, 2018
Add precision to message
1 parent abe89b6 commit 3b3d901

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/gui/symbology/qgspointclusterrendererwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,6 @@ void QgsPointClusterRendererWidget::updateRendererFromWidget()
230230
void QgsPointClusterRendererWidget::setupBlankUi( const QString &layerName )
231231
{
232232
QGridLayout *layout = new QGridLayout( this );
233-
QLabel *label = new QLabel( tr( "The point cluster renderer only applies to (single) point layers. \n'%1' is not a point layer and cannot be displayed by the point cluster renderer" ).arg( layerName ), this );
233+
QLabel *label = new QLabel( tr( "The point cluster renderer only applies to (single) point layers. \n'%1' is not a (single) point layer and cannot be displayed by the point cluster renderer." ).arg( layerName ), this );
234234
layout->addWidget( label );
235235
}

‎src/gui/symbology/qgspointdisplacementrendererwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ void QgsPointDisplacementRendererWidget::updateRendererFromWidget()
412412

413413
void QgsPointDisplacementRendererWidget::setupBlankUi( const QString &layerName )
414414
{
415-
QLabel *label = new QLabel( tr( "The point displacement renderer only applies to (single) point layers. \n'%1' is not a point layer and cannot be displayed by the point displacement renderer" ).arg( layerName ), this );
415+
QLabel *label = new QLabel( tr( "The point displacement renderer only applies to (single) point layers. \n'%1' is not a (single) point layer and cannot be displayed by the point displacement renderer." ).arg( layerName ), this );
416416
QVBoxLayout *layout = new QVBoxLayout( this );
417417
layout->setContentsMargins( 0, 0, 0, 0 );
418418
layout->addWidget( label );

0 commit comments

Comments
 (0)
Please sign in to comment.