Skip to content

Commit

Permalink
doxy
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso authored and nyalldawson committed Apr 17, 2019
1 parent 7b6f9c0 commit 7f52e29
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions python/core/auto_generated/qgsvectorlayer.sip.in
Expand Up @@ -365,8 +365,6 @@ data.
:param baseName: The name used to represent the layer in the legend
:param providerLib: The name of the data provider, e.g., "memory", "postgres"
:param options: layer load options

.. deprecated:: Use version with options as mandatory argument instead
%End

~QgsVectorLayer();
Expand Down
4 changes: 2 additions & 2 deletions src/core/processing/qgsprocessingutils.h
Expand Up @@ -330,7 +330,7 @@ class CORE_EXPORT QgsProcessingUtils
*
* \since QGIS 3.8
*/
static QgsMapLayer *loadMapLayerFromString( const QString &string, const QgsCoordinateTransformContext &transformContext, LayerHint typeHint = UnknownType );
static QgsMapLayer *loadMapLayerFromString( const QString &string, const QgsCoordinateTransformContext &transformContext, LayerHint typeHint = LayerHint::UnknownType );

/**
* Interprets a string as a map layer. The method will attempt to
Expand All @@ -340,7 +340,7 @@ class CORE_EXPORT QgsProcessingUtils
*
* \deprecated use mapLayerFromString() that takes QgsCoordinateTransformContext as an argument instead
*/
Q_DECL_DEPRECATED static QgsMapLayer *loadMapLayerFromString( const QString &string, LayerHint typeHint = UnknownType ) SIP_DEPRECATED ;
Q_DECL_DEPRECATED static QgsMapLayer *loadMapLayerFromString( const QString &string, LayerHint typeHint = LayerHint::UnknownType ) SIP_DEPRECATED ;

static void parseDestinationString( QString &destination, QString &providerKey, QString &uri, QString &layerName, QString &format, QMap<QString, QVariant> &options, bool &useWriter, QString &extension );

Expand Down
1 change: 0 additions & 1 deletion src/core/qgsvectorlayer.h
Expand Up @@ -450,7 +450,6 @@ class CORE_EXPORT QgsVectorLayer : public QgsMapLayer, public QgsExpressionConte
* \param baseName The name used to represent the layer in the legend
* \param providerLib The name of the data provider, e.g., "memory", "postgres"
* \param options layer load options
* \deprecated Use version with options as mandatory argument instead
*/
explicit QgsVectorLayer( const QString &path = QString(), const QString &baseName = QString(),
const QString &providerLib = "ogr", const QgsVectorLayer::LayerOptions &options = QgsVectorLayer::LayerOptions() );
Expand Down

0 comments on commit 7f52e29

Please sign in to comment.