Skip to content

Commit 89d6f80

Browse files
author
jef
committedDec 3, 2009
fix #2186
git-svn-id: http://svn.osgeo.org/qgis/trunk@12321 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 3d12c6a commit 89d6f80

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/app/qgsvectorlayerproperties.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1119,7 +1119,7 @@ void QgsVectorLayerProperties::setUsingNewSymbology( bool useNewSymbology )
11191119
void QgsVectorLayerProperties::useNewSymbology()
11201120
{
11211121
int res = QMessageBox::question( this, tr( "Symbology" ),
1122-
tr( "Do you wish to use original symbology implementation for this layer?" ),
1122+
tr( "Do you wish to use the new symbology implementation for this layer?" ),
11231123
QMessageBox::Yes | QMessageBox::No );
11241124

11251125
if ( res != QMessageBox::Yes )

‎src/gui/symbology-ng/qgsrendererv2propertiesdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ void QgsRendererV2PropertiesDialog::showSymbolLevels()
173173
void QgsRendererV2PropertiesDialog::useOldSymbology()
174174
{
175175
int res = QMessageBox::question( this, tr( "Symbology" ),
176-
tr( "Do you wish to use original symbology implementation for this layer?" ),
176+
tr( "Do you wish to use the original symbology implementation for this layer?" ),
177177
QMessageBox::Yes | QMessageBox::No );
178178

179179
if ( res != QMessageBox::Yes )

0 commit comments

Comments
 (0)
Please sign in to comment.