File tree Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 21
21
#include < QDomDocument>
22
22
#include < QStringList>
23
23
24
+ QgsProperty::QgsProperty ()
25
+ {
26
+ }
27
+
28
+ QgsProperty::~QgsProperty ()
29
+ {
30
+ }
31
+
32
+ QgsPropertyValue::~QgsPropertyValue ()
33
+ {
34
+ }
35
+
24
36
void QgsPropertyValue::dump ( int tabs ) const
25
37
{
26
38
QString tabString;
Original file line number Diff line number Diff line change @@ -47,12 +47,8 @@ class QDomDocument;
47
47
class CORE_EXPORT QgsProperty
48
48
{
49
49
public:
50
-
51
- QgsProperty ()
52
- {}
53
-
54
- virtual ~QgsProperty ()
55
- {}
50
+ QgsProperty ();
51
+ virtual ~QgsProperty ();
56
52
57
53
/* * Dumps out the keys and values
58
54
*
@@ -125,7 +121,7 @@ class CORE_EXPORT QgsPropertyValue : public QgsProperty
125
121
: value_( value )
126
122
{}
127
123
128
- virtual ~QgsPropertyValue () {}
124
+ virtual ~QgsPropertyValue ();
129
125
130
126
/* * Returns true if is a QgsPropertyKey */
131
127
virtual bool isKey () const override { return false ; }
@@ -208,7 +204,7 @@ class CORE_EXPORT QgsPropertyKey : public QgsProperty
208
204
209
205
210
206
// / add the given property key
211
- QgsPropertyKey * addKey ( const QString & keyName )
207
+ QgsPropertyKey *addKey ( const QString & keyName )
212
208
{
213
209
delete mProperties .take ( keyName );
214
210
mProperties .insert ( keyName, new QgsPropertyKey ( keyName ) );
You can’t perform that action at this time.
0 commit comments