Skip to content

Commit f1633a1

Browse files
committedOct 26, 2015
Change all signals to use const refs for non trivial objects
1 parent 70bff3f commit f1633a1

File tree

87 files changed

+126
-126
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+126
-126
lines changed
 

‎python/analysis/network/qgsgraphdirector.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class QgsGraphDirector : QObject
2323

2424
signals:
2525
void buildProgress( int, int ) const;
26-
void buildMessage( QString ) const;
26+
void buildMessage( const QString& ) const;
2727

2828
public:
2929
//! Destructor

‎python/core/composer/qgsatlascomposition.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ public:
280280
void toggled( bool );
281281

282282
/** Is emitted when the atlas has an updated status bar message for the composer window*/
283-
void statusMsgChanged( QString message );
283+
void statusMsgChanged( const QString& message );
284284

285285
/** Is emitted when the coverage layer for an atlas changes*/
286286
void coverageLayerChanged( QgsVectorLayer* layer );

0 commit comments

Comments
 (0)
Please sign in to comment.