Skip to content

Commit fe8d9c2

Browse files
author
borysiasty
committedApr 30, 2010
Fix missing actions. Patch #2686 by christophgysin + sip bindings.
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13412 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed
 

‎python/gui/qgisinterface.sip

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,10 @@ class QgisInterface : QObject
182182
virtual QAction *actionMoveVertex() = 0;
183183
virtual QAction *actionAddRing() = 0;
184184
virtual QAction *actionAddIsland() = 0;
185+
virtual QAction *actionSimplifyFeature() = 0;
186+
virtual QAction *actionDeleteRing() = 0;
187+
virtual QAction *actionDeletePart() = 0;
188+
virtual QAction *actionNodeTool() = 0;
185189
virtual QAction *actionEditSeparator2() = 0;
186190

187191
//! View menu actions

‎src/app/qgisappinterface.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,10 @@ QAction *QgisAppInterface::actionDeleteVertex() { return 0; }
274274
QAction *QgisAppInterface::actionMoveVertex() { return 0; }
275275
QAction *QgisAppInterface::actionAddRing() { return qgis->actionAddRing(); }
276276
QAction *QgisAppInterface::actionAddIsland() { return qgis->actionAddIsland(); }
277+
QAction *QgisAppInterface::actionSimplifyFeature() { return qgis->actionSimplifyFeature(); }
278+
QAction *QgisAppInterface::actionDeleteRing() { return qgis->actionDeleteRing(); }
279+
QAction *QgisAppInterface::actionDeletePart() { return qgis->actionDeletePart(); }
280+
QAction *QgisAppInterface::actionNodeTool() { return qgis->actionNodeTool(); }
277281
QAction *QgisAppInterface::actionEditSeparator2() { return qgis->actionEditSeparator2(); }
278282

279283
//! View menu actions

‎src/app/qgisappinterface.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,10 @@ class QgisAppInterface : public QgisInterface
187187
virtual QAction *actionMoveVertex();
188188
virtual QAction *actionAddRing();
189189
virtual QAction *actionAddIsland();
190+
virtual QAction *actionSimplifyFeature();
191+
virtual QAction *actionDeleteRing();
192+
virtual QAction *actionDeletePart();
193+
virtual QAction *actionNodeTool();
190194
virtual QAction *actionEditSeparator2();
191195

192196
//! View menu actions

‎src/gui/qgisinterface.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,10 @@ class GUI_EXPORT QgisInterface : public QObject
228228
virtual QAction *actionMoveVertex() = 0;
229229
virtual QAction *actionAddRing() = 0;
230230
virtual QAction *actionAddIsland() = 0;
231+
virtual QAction *actionSimplifyFeature() = 0;
232+
virtual QAction *actionDeleteRing() = 0;
233+
virtual QAction *actionDeletePart() = 0;
234+
virtual QAction *actionNodeTool() = 0;
231235
virtual QAction *actionEditSeparator2() = 0;
232236

233237
//! View menu actions

0 commit comments

Comments
 (0)
Please sign in to comment.