Skip to content

Commit

Permalink
Fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jul 21, 2014
1 parent 68e03cb commit 3bcff89
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/core/composer/qgscomposerhtml.sip
Expand Up @@ -155,6 +155,6 @@ class QgsComposerHtml: QgsComposerMultiFrame

void refreshExpressionContext();

virtual void refreshDataDefinedProperty( QgsComposerObject::DataDefinedProperty property = QgsComposerObject::AllProperties );
virtual void refreshDataDefinedProperty( const QgsComposerObject::DataDefinedProperty property = QgsComposerObject::AllProperties );

};
2 changes: 1 addition & 1 deletion src/core/composer/qgscomposerhtml.cpp
Expand Up @@ -484,7 +484,7 @@ void QgsComposerHtml::refreshExpressionContext()
loadHtml();
}

void QgsComposerHtml::refreshDataDefinedProperty( QgsComposerObject::DataDefinedProperty property )
void QgsComposerHtml::refreshDataDefinedProperty( const QgsComposerObject::DataDefinedProperty property )
{
//updates data defined properties and redraws item to match
if ( property == QgsComposerObject::SourceUrl || property == QgsComposerObject::AllProperties )
Expand Down
2 changes: 1 addition & 1 deletion src/core/composer/qgscomposerhtml.h
Expand Up @@ -178,7 +178,7 @@ class CORE_EXPORT QgsComposerHtml: public QgsComposerMultiFrame

void refreshExpressionContext();

virtual void refreshDataDefinedProperty( QgsComposerObject::DataDefinedProperty property = QgsComposerObject::AllProperties );
virtual void refreshDataDefinedProperty( const QgsComposerObject::DataDefinedProperty property = QgsComposerObject::AllProperties );

private slots:
void frameLoaded( bool ok = true );
Expand Down

0 comments on commit 3bcff89

Please sign in to comment.