Skip to content

Commit

Permalink
- rename 'add island' to 'add part'
Browse files Browse the repository at this point in the history
- rename 'delete ring' to 'delete part'


git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@12009 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Nov 8, 2009
1 parent 9f9fbe5 commit a803eef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/qgisapp.cpp
Expand Up @@ -717,9 +717,9 @@ void QgisApp::createActions()
connect( mActionAddRing, SIGNAL( triggered() ), this, SLOT( addRing() ) );
mActionAddRing->setEnabled( false );

mActionAddIsland = new QAction( getThemeIcon( "mActionAddIsland.png" ), tr( "Add Island" ), this );
mActionAddIsland = new QAction( getThemeIcon( "mActionAddIsland.png" ), tr( "Add Part" ), this );
shortcuts->registerAction( mActionAddIsland );
mActionAddIsland->setStatusTip( tr( "Add Island to multipolygon" ) );
mActionAddIsland->setStatusTip( tr( "Add part to multipolygon" ) );
connect( mActionAddIsland, SIGNAL( triggered() ), this, SLOT( addIsland() ) );
mActionAddIsland->setEnabled( false );

Expand All @@ -731,13 +731,13 @@ void QgisApp::createActions()

mActionDeleteRing = new QAction( getThemeIcon( "mActionDeleteRing.png" ), tr( "Delete Ring" ), this );
shortcuts->registerAction( mActionDeleteRing );
mActionDeleteRing->setStatusTip( tr( "Delete Ring" ) );
mActionDeleteRing->setStatusTip( tr( "Click a vertex of the ring to delete" ) );
connect( mActionDeleteRing, SIGNAL( triggered() ), this, SLOT( deleteRing() ) );
mActionDeleteRing->setEnabled( false );

mActionDeletePart = new QAction( getThemeIcon( "mActionDeletePart.png" ), tr( "Delete Part" ), this );
shortcuts->registerAction( mActionDeletePart );
mActionDeletePart->setStatusTip( tr( "Delete Part" ) );
mActionDeletePart->setStatusTip( tr( "Click a vertex of the part to delete" ) );
connect( mActionDeletePart, SIGNAL( triggered() ), this, SLOT( deletePart() ) );
mActionDeletePart->setEnabled( false );

Expand Down

0 comments on commit a803eef

Please sign in to comment.