From: johanengelen Date: Mon, 16 Jul 2007 18:55:32 +0000 (+0000) Subject: fix compiler warning on ordering of init in uri-references.cpp X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=71b17db3b4166e7aff3f76e9c015c77b1d967f12;p=inkscape.git fix compiler warning on ordering of init in uri-references.cpp --- 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); }