Skip to content

Commit

Permalink
fix doygen
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Oct 18, 2020
1 parent 29b76f4 commit 07280da
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
11 changes: 10 additions & 1 deletion python/gui/auto_generated/symbology/qgssymbollayerwidget.sip.in
Expand Up @@ -451,10 +451,19 @@ Creates a new QgsSvgMarkerSymbolLayerWidget.

public slots:
void setSvgPath( const QString &name );
%Docstring
Sets the SVG path
%End


protected:
void populateList();

void populateList() /Deprecated/;
%Docstring
This method does nothing anymore, the loading is automatic

.. deprecated:: QGIS 3.16
%End

void setGuiForSvg( const QgsSvgMarkerSymbolLayer *layer, bool skipDefaultColors = false );
%Docstring
Expand Down
8 changes: 7 additions & 1 deletion src/gui/symbology/qgssymbollayerwidget.h
Expand Up @@ -599,12 +599,18 @@ class GUI_EXPORT QgsSvgMarkerSymbolLayerWidget : public QgsSymbolLayerWidget, pr
void setContext( const QgsSymbolWidgetContext &context ) override;

public slots:
//! Sets the SVG path
void setSvgPath( const QString &name );


protected:
// TODO QGIS 4: remove
Q_DECL_DEPRECATED void populateList() {};

/**
* This method does nothing anymore, the loading is automatic
* \deprecated since QGIS 3.16
*/
Q_DECL_DEPRECATED void populateList() SIP_DEPRECATED {}

/**
* Updates the GUI to reflect the SVG marker symbol \a layer.
Expand Down

0 comments on commit 07280da

Please sign in to comment.