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
440
440
virtual QAction *actionCancelEdits() = 0;
441
441
virtual QAction *actionCancelAllEdits() = 0;
442
442
virtual QAction *actionLayerSaveAs() = 0;
443
- /** @deprecated in 2.4 - returns null pointer */
444
- virtual QAction *actionLayerSelectionSaveAs() = 0 /Deprecated/;
445
443
virtual QAction *actionRemoveLayer() = 0;
446
444
virtual QAction *actionDuplicateLayer() = 0;
447
445
virtual QAction *actionLayerProperties() = 0;
Original file line number Diff line number Diff line change @@ -591,7 +591,6 @@ QAction *QgisAppInterface::actionRollbackAllEdits() { return qgis->actionRollbac
591
591
QAction *QgisAppInterface::actionCancelEdits () { return qgis->actionCancelEdits (); }
592
592
QAction *QgisAppInterface::actionCancelAllEdits () { return qgis->actionCancelAllEdits (); }
593
593
QAction *QgisAppInterface::actionLayerSaveAs () { return qgis->actionLayerSaveAs (); }
594
- QAction *QgisAppInterface::actionLayerSelectionSaveAs () { return nullptr ; }
595
594
QAction *QgisAppInterface::actionRemoveLayer () { return qgis->actionRemoveLayer (); }
596
595
QAction *QgisAppInterface::actionDuplicateLayer () { return qgis->actionDuplicateLayer (); }
597
596
QAction *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
414
414
virtual QAction *actionCancelEdits () override ;
415
415
virtual QAction *actionCancelAllEdits () override ;
416
416
virtual QAction *actionLayerSaveAs () override ;
417
- virtual QAction *actionLayerSelectionSaveAs () override ;
418
417
virtual QAction *actionRemoveLayer () override ;
419
418
virtual QAction *actionDuplicateLayer () override ;
420
419
virtual QAction *actionLayerProperties () override ;
Original file line number Diff line number Diff line change @@ -495,10 +495,6 @@ class GUI_EXPORT QgisInterface : public QObject
495
495
virtual QAction *actionCancelAllEdits () = 0;
496
496
virtual QAction *actionLayerSaveAs () = 0;
497
497
/* * @deprecated in 2.4 - returns null pointer */
498
- #ifndef Q_MOC_RUN
499
- Q_DECL_DEPRECATED
500
- #endif
501
- virtual QAction *actionLayerSelectionSaveAs () = 0;
502
498
virtual QAction *actionRemoveLayer () = 0;
503
499
virtual QAction *actionDuplicateLayer () = 0;
504
500
virtual QAction *actionLayerProperties () = 0;
You can’t perform that action at this time.
0 commit comments