mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
Fix missing actions. Patch #2686 by christophgysin + sip bindings.
git-svn-id: http://svn.osgeo.org/qgis/trunk@13412 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
e1671bd713
commit
735f9e03fe
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user