summaryrefslogtreecommitdiffstats
path: root/src/uri-references.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2007-07-16 18:55:32 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2007-07-16 18:55:32 +0000
commita27bd70c6d47ebfedb069e2d90bad8538a020f5e (patch)
tree351c9ac3a464bde2fb2c16c309f055a833b1ca52 /src/uri-references.cpp
parentadd text replace (diff)
downloadinkscape-a27bd70c6d47ebfedb069e2d90bad8538a020f5e.tar.gz
inkscape-a27bd70c6d47ebfedb069e2d90bad8538a020f5e.zip
fix compiler warning on ordering of init in uri-references.cpp
(bzr r3255)
Diffstat (limited to 'src/uri-references.cpp')
-rw-r--r--src/uri-references.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uri-references.cpp b/src/uri-references.cpp
index 8e14c9336..c9482839d 100644
--- a/src/uri-references.cpp
+++ b/src/uri-references.cpp
@@ -31,7 +31,7 @@ URIReference::URIReference(SPObject *owner)
}
URIReference::URIReference(SPDocument *owner_document)
- : _owner_document(owner_document), _owner(NULL), _obj(NULL), _uri(NULL)
+ : _owner(NULL), _owner_document(owner_document), _obj(NULL), _uri(NULL)
{
g_assert(_owner_document != NULL);
}