From a27bd70c6d47ebfedb069e2d90bad8538a020f5e Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Mon, 16 Jul 2007 18:55:32 +0000 Subject: fix compiler warning on ordering of init in uri-references.cpp (bzr r3255) --- src/uri-references.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/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); } -- cgit v1.2.3