Skip to content

Commit 3bcff89

Browse files
committedJul 21, 2014
Fix build errors
1 parent 68e03cb commit 3bcff89

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎python/core/composer/qgscomposerhtml.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,6 @@ class QgsComposerHtml: QgsComposerMultiFrame
155155

156156
void refreshExpressionContext();
157157

158-
virtual void refreshDataDefinedProperty( QgsComposerObject::DataDefinedProperty property = QgsComposerObject::AllProperties );
158+
virtual void refreshDataDefinedProperty( const QgsComposerObject::DataDefinedProperty property = QgsComposerObject::AllProperties );
159159

160160
};

‎src/core/composer/qgscomposerhtml.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ void QgsComposerHtml::refreshExpressionContext()
484484
loadHtml();
485485
}
486486

487-
void QgsComposerHtml::refreshDataDefinedProperty( QgsComposerObject::DataDefinedProperty property )
487+
void QgsComposerHtml::refreshDataDefinedProperty( const QgsComposerObject::DataDefinedProperty property )
488488
{
489489
//updates data defined properties and redraws item to match
490490
if ( property == QgsComposerObject::SourceUrl || property == QgsComposerObject::AllProperties )

‎src/core/composer/qgscomposerhtml.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ class CORE_EXPORT QgsComposerHtml: public QgsComposerMultiFrame
178178

179179
void refreshExpressionContext();
180180

181-
virtual void refreshDataDefinedProperty( QgsComposerObject::DataDefinedProperty property = QgsComposerObject::AllProperties );
181+
virtual void refreshDataDefinedProperty( const QgsComposerObject::DataDefinedProperty property = QgsComposerObject::AllProperties );
182182

183183
private slots:
184184
void frameLoaded( bool ok = true );

0 commit comments

Comments
 (0)
Please sign in to comment.