File tree Expand file tree Collapse file tree 4 files changed +0
-8
lines changed
Expand file tree Collapse file tree 4 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -440,8 +440,6 @@ class QgisInterface : QObject
440440 virtual QAction *actionCancelEdits() = 0;
441441 virtual QAction *actionCancelAllEdits() = 0;
442442 virtual QAction *actionLayerSaveAs() = 0;
443- /** @deprecated in 2.4 - returns null pointer */
444- virtual QAction *actionLayerSelectionSaveAs() = 0 /Deprecated/;
445443 virtual QAction *actionRemoveLayer() = 0;
446444 virtual QAction *actionDuplicateLayer() = 0;
447445 virtual QAction *actionLayerProperties() = 0;
Original file line number Diff line number Diff line change @@ -591,7 +591,6 @@ QAction *QgisAppInterface::actionRollbackAllEdits() { return qgis->actionRollbac
591591QAction *QgisAppInterface::actionCancelEdits () { return qgis->actionCancelEdits (); }
592592QAction *QgisAppInterface::actionCancelAllEdits () { return qgis->actionCancelAllEdits (); }
593593QAction *QgisAppInterface::actionLayerSaveAs () { return qgis->actionLayerSaveAs (); }
594- QAction *QgisAppInterface::actionLayerSelectionSaveAs () { return nullptr ; }
595594QAction *QgisAppInterface::actionRemoveLayer () { return qgis->actionRemoveLayer (); }
596595QAction *QgisAppInterface::actionDuplicateLayer () { return qgis->actionDuplicateLayer (); }
597596QAction *QgisAppInterface::actionLayerProperties () { return qgis->actionLayerProperties (); }
Original file line number Diff line number Diff line change @@ -414,7 +414,6 @@ class APP_EXPORT QgisAppInterface : public QgisInterface
414414 virtual QAction *actionCancelEdits () override ;
415415 virtual QAction *actionCancelAllEdits () override ;
416416 virtual QAction *actionLayerSaveAs () override ;
417- virtual QAction *actionLayerSelectionSaveAs () override ;
418417 virtual QAction *actionRemoveLayer () override ;
419418 virtual QAction *actionDuplicateLayer () override ;
420419 virtual QAction *actionLayerProperties () override ;
Original file line number Diff line number Diff line change @@ -495,10 +495,6 @@ class GUI_EXPORT QgisInterface : public QObject
495495 virtual QAction *actionCancelAllEdits () = 0;
496496 virtual QAction *actionLayerSaveAs () = 0;
497497 /* * @deprecated in 2.4 - returns null pointer */
498- #ifndef Q_MOC_RUN
499- Q_DECL_DEPRECATED
500- #endif
501- virtual QAction *actionLayerSelectionSaveAs () = 0;
502498 virtual QAction *actionRemoveLayer () = 0;
503499 virtual QAction *actionDuplicateLayer () = 0;
504500 virtual QAction *actionLayerProperties () = 0;
You can’t perform that action at this time.
0 commit comments