Skip to content

Commit

Permalink
Sipify
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 13, 2018
1 parent fa68041 commit 3a08300
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Expand Up @@ -224,7 +224,7 @@ Returns the label font color.
virtual void setFrameEnabled( bool drawFrame );


virtual void setFrameStrokeWidth( const QgsLayoutMeasurement &strokeWidth );
virtual void setFrameStrokeWidth( QgsLayoutMeasurement strokeWidth );


public slots:
Expand Down
2 changes: 1 addition & 1 deletion python/core/auto_generated/layout/qgslayoutitemmap.sip.in
Expand Up @@ -61,7 +61,7 @@ The caller takes responsibility for deleting the returned object.

virtual int numberExportLayers() const;

virtual void setFrameStrokeWidth( const QgsLayoutMeasurement &width );
virtual void setFrameStrokeWidth( QgsLayoutMeasurement width );


double scale() const;
Expand Down
Expand Up @@ -299,7 +299,7 @@ Is emitted on picture rotation change

virtual void draw( QgsLayoutItemRenderContext &context );

virtual QSizeF applyItemSizeConstraint( const QSizeF &targetSize );
virtual QSizeF applyItemSizeConstraint( QSizeF targetSize );

virtual bool writePropertiesToElement( QDomElement &element, QDomDocument &document, const QgsReadWriteContext &context ) const;

Expand Down
4 changes: 2 additions & 2 deletions python/core/auto_generated/layout/qgslayoutmeasurement.sip.in
Expand Up @@ -77,8 +77,8 @@ Decodes a measurement from a ``string``.
.. seealso:: :py:func:`encodeMeasurement`
%End

bool operator==( const QgsLayoutMeasurement &other ) const;
bool operator!=( const QgsLayoutMeasurement &other ) const;
bool operator==( QgsLayoutMeasurement other ) const;
bool operator!=( QgsLayoutMeasurement other ) const;

QgsLayoutMeasurement operator+( double v ) const;

Expand Down

0 comments on commit 3a08300

Please sign in to comment.