Skip to content

Commit

Permalink
delete/move line -> element
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5179 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
rblazek committed Apr 5, 2006
1 parent 7fe35ac commit 3c97c9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/grass/qgsgrassedit.cpp
Expand Up @@ -250,7 +250,7 @@ void QgsGrassEdit::init()
connect ( mDeleteVertexAction, SIGNAL(triggered()), this, SLOT(deleteVertex()) );

mMoveLineAction = new QAction(
QIcon(myIconPath+"grass_move_line.png"), tr("Move line"), this);
QIcon(myIconPath+"grass_move_line.png"), tr("Move element"), this);
mMoveLineAction->setShortcut ( QKeySequence(Qt::Key_F9) );
tb->addAction ( mMoveLineAction );
connect ( mMoveLineAction, SIGNAL(triggered()), this, SLOT(moveLine()) );
Expand All @@ -262,7 +262,7 @@ void QgsGrassEdit::init()
connect ( mSplitLineAction, SIGNAL(triggered()), this, SLOT(splitLine()) );

mDeleteLineAction = new QAction(
QIcon(myIconPath+"grass_delete_line.png"), tr("Delete line"), this);
QIcon(myIconPath+"grass_delete_line.png"), tr("Delete element"), this);
mDeleteLineAction->setShortcut ( QKeySequence(Qt::Key_F11) );
tb->addAction ( mDeleteLineAction );
connect ( mDeleteLineAction, SIGNAL(triggered()), this, SLOT(deleteLine()) );
Expand Down

0 comments on commit 3c97c9a

Please sign in to comment.