Skip to content

Commit acb4464

Browse files
committedJan 5, 2018
Add missing factory annotation
1 parent 1ea5a5f commit acb4464

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎python/core/layout/qgsabstractreportsection.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ subclasses.
247247
Constructor for QgsReport.
248248
%End
249249

250-
virtual QgsReport *clone() const;
250+
virtual QgsReport *clone() const /Factory/;
251251

252252

253253
virtual int count();

‎src/core/layout/qgsabstractreportsection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ class CORE_EXPORT QgsReport : public QgsAbstractReportSection
234234
//! Constructor for QgsReport.
235235
QgsReport() = default;
236236

237-
QgsReport *clone() const override;
237+
QgsReport *clone() const override SIP_FACTORY;
238238

239239
// TODO - how to handle this?
240240
int count() override { return -1; }

0 commit comments

Comments
 (0)
Please sign in to comment.