Code

fix compiler warning on ordering of init in uri-references.cpp
authorjohanengelen <johanengelen@users.sourceforge.net>
Mon, 16 Jul 2007 18:55:32 +0000 (18:55 +0000)
committerjohanengelen <johanengelen@users.sourceforge.net>
Mon, 16 Jul 2007 18:55:32 +0000 (18:55 +0000)
src/uri-references.cpp

index 8e14c9336522197fb9a63fa2b1992f9655b0838c..c9482839d56a5452579583549712eb6ba1b9395d 100644 (file)
@@ -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);
 }