Skip to content

Commit

Permalink
Sip sync
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Sep 25, 2017
1 parent f952e6a commit 60b8ec5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion python/core/composer/qgsatlascomposition.sip
Expand Up @@ -171,7 +171,7 @@ class QgsAtlasComposition : QObject
:rtype: str
%End

void setFileFormat( QString format );
void setFileFormat( const QString &format );
%Docstring
Sets the atlas file format used for image exports.
\param format set the file format extension
Expand Down
4 changes: 2 additions & 2 deletions python/core/qgsdatadefinedsizelegend.sip
Expand Up @@ -86,11 +86,11 @@ Returns transformer for scaling of symbol sizes. Returns null if no transformer
:rtype: QgsSizeScaleTransformer
%End

void setClasses( const QList<QgsDataDefinedSizeLegend::SizeClass> &classes );
void setClasses( const QList< QgsDataDefinedSizeLegend::SizeClass > &classes );
%Docstring
Sets list of classes: each class is a pair of symbol size (in units used by the symbol) and label
%End
QList<QgsDataDefinedSizeLegend::SizeClass> classes() const;
QList< QgsDataDefinedSizeLegend::SizeClass > classes() const;
%Docstring
Returns list of classes: each class is a pair of symbol size (in units used by the symbol) and label
:rtype: list of QgsDataDefinedSizeLegend.SizeClass
Expand Down
2 changes: 1 addition & 1 deletion python/core/qgsrendercontext.sip
Expand Up @@ -189,7 +189,7 @@ Sets coordinate transformation.

void setRenderingStopped( bool stopped );

void setDistanceArea( const QgsDistanceArea distanceArea );
void setDistanceArea( const QgsDistanceArea &distanceArea );
%Docstring
A general purpose distance and area calculator, capable of performing ellipsoid based calculations.
Will be used to convert meter distances to active MapUnit values for QgsUnitTypes.RenderMetersInMapUnits
Expand Down
2 changes: 1 addition & 1 deletion python/core/symbology/qgsgraduatedsymbolrenderer.sip
Expand Up @@ -75,7 +75,7 @@ class QgsRendererRange
void swap( QgsRendererRange &other );
};

typedef QList<QgsRendererRange> QgsRangeList;
typedef QVector<QgsRendererRange> QgsRangeList;


class QgsRendererRangeLabelFormat
Expand Down

0 comments on commit 60b8ec5

Please sign in to comment.