From: Jon A. Cruz Date: Sun, 27 Dec 2009 03:25:48 +0000 (-0800) Subject: Correcting initialization order in ctor. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a2dc6e9e2b5e48766e3334f0af1fdb018dadaff8;p=inkscape.git Correcting initialization order in ctor. --- diff --git a/src/document.cpp b/src/document.cpp index df77dde64..3104ade28 100644 --- a/src/document.cpp +++ b/src/document.cpp @@ -97,9 +97,9 @@ SPDocument::SPDocument() : rerouting_handler_id(0), profileManager(0), // deferred until after other initialization router(new Avoid::Router(Avoid::PolyLineRouting|Avoid::OrthogonalRouting)), - current_persp3d(0), _collection_queue(0), - oldSignalsConnected(false) + oldSignalsConnected(false), + current_persp3d(0) { // Penalise libavoid for choosing paths with needless extra segments. // This results in much better looking orthogonal connector paths.