Skip to content

Commit 29e009f

Browse files
committedOct 6, 2012
fix SIP bindings after atlas merge
1 parent fa68f85 commit 29e009f

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed
 

‎python/core/composer/qgsatlascomposition.sip

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* prepareForFeature() modifies the atlas map's extent to zoom on the given feature.
44
* This class is used for printing, exporting to PDF and images.
55
* */
6-
class QgsAtlasComposition : public QObject
6+
class QgsAtlasComposition : QObject
77
{
88
%TypeHeaderCode
99
#include <qgsatlascomposition.h>
@@ -12,32 +12,32 @@ class QgsAtlasComposition : public QObject
1212
public:
1313
QgsAtlasComposition( QgsComposition* composition );
1414
~QgsAtlasComposition();
15-
15+
1616
/** Is the atlas generation enabled ? */
1717
bool enabled() const;
1818
void setEnabled( bool e );
1919

2020
QgsComposerMap* composerMap() const;
2121
void setComposerMap( QgsComposerMap* map );
22-
22+
2323
bool hideCoverage() const;
2424
void setHideCoverage( bool hide );
25-
25+
2626
bool fixedScale() const;
2727
void setFixedScale( bool fixed );
28-
28+
2929
float margin() const;
3030
void setMargin( float margin );
31-
31+
3232
QString filenamePattern() const;
3333
void setFilenamePattern( const QString& pattern );
34-
34+
3535
QgsVectorLayer* coverageLayer() const;
3636
void setCoverageLayer( QgsVectorLayer* lmap );
37-
37+
3838
bool singleFile() const;
3939
void setSingleFile( bool single );
40-
40+
4141
/** Begins the rendering. */
4242
void beginRender();
4343
/** Ends the rendering. Restores original extent */
@@ -60,4 +60,4 @@ public:
6060
signals:
6161
/** emitted when one of the parameters changes */
6262
void parameterChanged();
63-
};
63+
};

0 commit comments

Comments
 (0)
Please sign in to comment.