File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ QString QgsMapToolLabel::currentLabelText( int trunc )
145
145
if ( trunc > 0 && labelText.length () > trunc )
146
146
{
147
147
labelText.truncate ( trunc );
148
- labelText += QLatin1String ( " …" );
148
+ labelText += QStringLiteral ( " …" );
149
149
}
150
150
return labelText;
151
151
}
@@ -168,7 +168,7 @@ QString QgsMapToolLabel::currentLabelText( int trunc )
168
168
if ( trunc > 0 && labelText.length () > trunc )
169
169
{
170
170
labelText.truncate ( trunc );
171
- labelText += QLatin1String ( " …" );
171
+ labelText += QStringLiteral ( " …" );
172
172
}
173
173
return labelText;
174
174
}
Original file line number Diff line number Diff line change @@ -551,7 +551,7 @@ QString QgsExpression::helpText( QString name )
551
551
552
552
if ( v.mVariableLenArguments )
553
553
{
554
- helpContents += QLatin1String ( " …" );
554
+ helpContents += QStringLiteral ( " …" );
555
555
}
556
556
557
557
helpContents += ' )' ;
You can’t perform that action at this time.
0 commit comments