Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
added SIP_SKIP
  • Loading branch information
jakimowb authored and nyalldawson committed May 12, 2023
1 parent 2191d5c commit 367b8ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 18 deletions.
16 changes: 0 additions & 16 deletions python/gui/auto_generated/ogr/qgsvectorlayersaveasdialog.sip.in
Expand Up @@ -37,13 +37,6 @@ Class to select destination file, type and CRS for ogr layers
typedef QFlags<QgsVectorLayerSaveAsDialog::Option> Options;


QgsVectorLayerSaveAsDialog( long srsid, QWidget *parent = 0, Qt::WindowFlags fl = Qt::WindowFlags() );
%Docstring
Construct a new QgsVectorLayerSaveAsDialog

.. deprecated:: QGIS 3.14
- will be removed in QGIS 4.0
%End

QgsVectorLayerSaveAsDialog( QgsVectorLayer *layer, Options options = AllOptions, QWidget *parent = 0, Qt::WindowFlags fl = Qt::WindowFlags() );
%Docstring
Expand Down Expand Up @@ -84,15 +77,6 @@ Returns a list of additional layer options which are passed to OGR.
Refer to the OGR documentation for the target format for available options.
%End

long crs() const;
%Docstring
Returns the internal CRS ID.

.. seealso:: :py:func:`QgsCoordinateReferenceSystem.srsid`

.. deprecated:: QGIS 3.14
- will be removed in QGIS 4.0. Use :py:func:`~QgsVectorLayerSaveAsDialog.crsObject` instead.
%End

QgsCoordinateReferenceSystem crsObject() const;
%Docstring
Expand Down
4 changes: 2 additions & 2 deletions src/gui/ogr/qgsvectorlayersaveasdialog.h
Expand Up @@ -56,7 +56,7 @@ class GUI_EXPORT QgsVectorLayerSaveAsDialog : public QDialog, private Ui::QgsVec
*
* \deprecated since QGIS 3.14 - will be removed in QGIS 4.0
*/
Q_DECL_DEPRECATED QgsVectorLayerSaveAsDialog( long srsid, QWidget *parent = nullptr, Qt::WindowFlags fl = Qt::WindowFlags() );
Q_DECL_DEPRECATED QgsVectorLayerSaveAsDialog( long srsid, QWidget *parent = nullptr, Qt::WindowFlags fl = Qt::WindowFlags() ) SIP_SKIP;

/**
* Construct a new QgsVectorLayerSaveAsDialog
Expand Down Expand Up @@ -101,7 +101,7 @@ class GUI_EXPORT QgsVectorLayerSaveAsDialog : public QDialog, private Ui::QgsVec
* \see QgsCoordinateReferenceSystem::srsid()
* \deprecated since QGIS 3.14 - will be removed in QGIS 4.0. Use crsObject() instead.
*/
Q_DECL_DEPRECATED long crs() const;
Q_DECL_DEPRECATED long crs() const SIP_SKIP;

/**
* Returns the CRS chosen for export
Expand Down

0 comments on commit 367b8ba

Please sign in to comment.