Skip to content

Commit

Permalink
Fix missing actions. Patch #2686 by christophgysin + sip bindings.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13412 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
borysiasty committed Apr 30, 2010
1 parent 6c122af commit fe8d9c2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/gui/qgisinterface.sip
Expand Up @@ -182,6 +182,10 @@ class QgisInterface : QObject
virtual QAction *actionMoveVertex() = 0;
virtual QAction *actionAddRing() = 0;
virtual QAction *actionAddIsland() = 0;
virtual QAction *actionSimplifyFeature() = 0;
virtual QAction *actionDeleteRing() = 0;
virtual QAction *actionDeletePart() = 0;
virtual QAction *actionNodeTool() = 0;
virtual QAction *actionEditSeparator2() = 0;

//! View menu actions
Expand Down
4 changes: 4 additions & 0 deletions src/app/qgisappinterface.cpp
Expand Up @@ -274,6 +274,10 @@ QAction *QgisAppInterface::actionDeleteVertex() { return 0; }
QAction *QgisAppInterface::actionMoveVertex() { return 0; }
QAction *QgisAppInterface::actionAddRing() { return qgis->actionAddRing(); }
QAction *QgisAppInterface::actionAddIsland() { return qgis->actionAddIsland(); }
QAction *QgisAppInterface::actionSimplifyFeature() { return qgis->actionSimplifyFeature(); }
QAction *QgisAppInterface::actionDeleteRing() { return qgis->actionDeleteRing(); }
QAction *QgisAppInterface::actionDeletePart() { return qgis->actionDeletePart(); }
QAction *QgisAppInterface::actionNodeTool() { return qgis->actionNodeTool(); }
QAction *QgisAppInterface::actionEditSeparator2() { return qgis->actionEditSeparator2(); }

//! View menu actions
Expand Down
4 changes: 4 additions & 0 deletions src/app/qgisappinterface.h
Expand Up @@ -187,6 +187,10 @@ class QgisAppInterface : public QgisInterface
virtual QAction *actionMoveVertex();
virtual QAction *actionAddRing();
virtual QAction *actionAddIsland();
virtual QAction *actionSimplifyFeature();
virtual QAction *actionDeleteRing();
virtual QAction *actionDeletePart();
virtual QAction *actionNodeTool();
virtual QAction *actionEditSeparator2();

//! View menu actions
Expand Down
4 changes: 4 additions & 0 deletions src/gui/qgisinterface.h
Expand Up @@ -228,6 +228,10 @@ class GUI_EXPORT QgisInterface : public QObject
virtual QAction *actionMoveVertex() = 0;
virtual QAction *actionAddRing() = 0;
virtual QAction *actionAddIsland() = 0;
virtual QAction *actionSimplifyFeature() = 0;
virtual QAction *actionDeleteRing() = 0;
virtual QAction *actionDeletePart() = 0;
virtual QAction *actionNodeTool() = 0;
virtual QAction *actionEditSeparator2() = 0;

//! View menu actions
Expand Down

0 comments on commit fe8d9c2

Please sign in to comment.