Skip to content

Commit

Permalink
Make QgsSymbolV2::renderHints() const
Browse files Browse the repository at this point in the history
  • Loading branch information
mhugent committed Feb 8, 2012
1 parent aaddc4f commit bc43fdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/core/symbology-ng-core.sip
Expand Up @@ -631,7 +631,7 @@ class QgsSymbolV2RenderContext
void setSelected( bool selected );

//! @note added in 1.5
int renderHints();
int renderHints() const;
//! @note added in 1.5
void setRenderHints( int hints );

Expand Down
2 changes: 1 addition & 1 deletion src/core/symbology-ng/qgssymbolv2.h
Expand Up @@ -98,7 +98,7 @@ class CORE_EXPORT QgsSymbolV2
//! @note added in 1.5
void setRenderHints( int hints ) { mRenderHints = hints; }
//! @note added in 1.5
int renderHints() { return mRenderHints; }
int renderHints() const { return mRenderHints; }

QSet<QString> usedAttributes() const;

Expand Down

0 comments on commit bc43fdd

Please sign in to comment.