diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2007-07-16 18:55:32 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2007-07-16 18:55:32 +0000 |
| commit | a27bd70c6d47ebfedb069e2d90bad8538a020f5e (patch) | |
| tree | 351c9ac3a464bde2fb2c16c309f055a833b1ca52 /src/uri-references.cpp | |
| parent | add text replace (diff) | |
| download | inkscape-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.cpp | 2 |
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); } |
