Skip to content

Commit

Permalink
Add binding to iface for action to show composer manager
Browse files Browse the repository at this point in the history
  • Loading branch information
dakcarto committed Feb 20, 2013
1 parent 6e2f613 commit f28ca59
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions python/gui/qgisinterface.sip
Expand Up @@ -300,6 +300,7 @@ class QgisInterface : QObject
virtual QAction *actionSaveMapAsImage() = 0;
virtual QAction *actionProjectProperties() = 0;
virtual QAction *actionPrintComposer() = 0;
virtual QAction *actionShowComposerManager() = 0;
virtual QAction *actionExit() = 0;

//! Edit menu actions
Expand Down
1 change: 1 addition & 0 deletions src/app/qgisappinterface.cpp
Expand Up @@ -394,6 +394,7 @@ QAction *QgisAppInterface::actionSaveProjectAs() { return qgis->actionSaveProjec
QAction *QgisAppInterface::actionSaveMapAsImage() { return qgis->actionSaveMapAsImage(); }
QAction *QgisAppInterface::actionProjectProperties() { return qgis->actionProjectProperties(); }
QAction *QgisAppInterface::actionPrintComposer() { return qgis->actionNewPrintComposer(); }
QAction *QgisAppInterface::actionShowComposerManager() { return qgis->actionShowComposerManager(); }
QAction *QgisAppInterface::actionExit() { return qgis->actionExit(); }

//! Edit menu actions
Expand Down
1 change: 1 addition & 0 deletions src/app/qgisappinterface.h
Expand Up @@ -250,6 +250,7 @@ class QgisAppInterface : public QgisInterface
virtual QAction *actionSaveMapAsImage();
virtual QAction *actionProjectProperties();
virtual QAction *actionPrintComposer();
virtual QAction *actionShowComposerManager();
virtual QAction *actionExit();

//! Edit menu actions
Expand Down
1 change: 1 addition & 0 deletions src/gui/qgisinterface.h
Expand Up @@ -349,6 +349,7 @@ class GUI_EXPORT QgisInterface : public QObject
virtual QAction *actionSaveMapAsImage() = 0;
virtual QAction *actionProjectProperties() = 0;
virtual QAction *actionPrintComposer() = 0;
virtual QAction *actionShowComposerManager() = 0;
virtual QAction *actionExit() = 0;

//! Edit menu actions
Expand Down

0 comments on commit f28ca59

Please sign in to comment.