File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 13
13
14
14
%Feature ARM // Some parts are not available in sip bindings on ARM because of qreal double vs. float issues
15
15
16
+
16
17
class QgsClipper
17
18
{
18
19
%Docstring
@@ -47,6 +48,7 @@ class QgsClipper
47
48
};
48
49
49
50
%If (!ARM) // Not available on ARM sip bindings because of qreal issues
51
+
50
52
static void trimFeature( QVector<double> &x,
51
53
QVector<double> &y,
52
54
bool shapeOpen );
@@ -62,6 +64,7 @@ class QgsClipper
62
64
%End
63
65
64
66
%End
67
+
65
68
static void trimPolygon( QPolygonF &pts, const QgsRectangle &clipRect );
66
69
67
70
static QPolygonF clippedLine( const QgsCurve &curve, const QgsRectangle &clipExtent );
Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ class QgsPropertyTransformer
136
136
else
137
137
sipType = sipType_QgsPropertyTransformer;
138
138
%End
139
+
139
140
public:
140
141
141
142
enum Type
Original file line number Diff line number Diff line change @@ -64,11 +64,11 @@ sub processDoxygenLine
64
64
# print $line;
65
65
66
66
if ($line =~ m / ^\s *SIP_FEATURE\( (\w +) \) (.*)$ / ){
67
- print " %Feature $1$2 " ;
67
+ print " %Feature $1$2 \n " ;
68
68
next ;
69
69
}
70
70
if ($line =~ m / ^\s *SIP_IF_FEATURE\( (\! ?\w +) \) (.*)$ / ){
71
- print " %If ($1 )$2 " ;
71
+ print " %If ($1 )$2 \n " ;
72
72
next ;
73
73
}
74
74
if ($line =~ m / ^\s *SIP_CONVERT_TO_SUBCLASS_CODE(.*)$ / ){
@@ -77,7 +77,7 @@ sub processDoxygenLine
77
77
}
78
78
79
79
if ($line =~ m / ^\s *SIP_END(.*)$ / ){
80
- print " %End$1 " ;
80
+ print " %End$1 \n " ;
81
81
next ;
82
82
}
83
83
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ class QgsSipifyHeader : QtClass<QVariant>
58
58
else
59
59
sipType = sipType_QgsStandardSipifyHeader;
60
60
%End
61
+
61
62
public:
62
63
enum MyEnum
63
64
{
You can’t perform that action at this time.
0 commit comments