From: joncruz Date: Wed, 12 Mar 2008 02:47:11 +0000 (+0000) Subject: Fixed initialization order X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b0c1e60bd7f9097b8f677a0d229242d82f53d363;p=inkscape.git Fixed initialization order --- diff --git a/src/object-snapper.cpp b/src/object-snapper.cpp index 934925ad0..234e989dd 100644 --- a/src/object-snapper.cpp +++ b/src/object-snapper.cpp @@ -33,8 +33,8 @@ Inkscape::ObjectSnapper::ObjectSnapper(SPNamedView const *nv, NR::Coord const d) : Snapper(nv, d), _snap_to_itemnode(true), _snap_to_itempath(true), - _snap_to_bboxnode(true), _snap_to_bboxpath(true), _strict_snapping(true), - _snap_to_page_border(false), _include_item_center(false) + _snap_to_bboxnode(true), _snap_to_bboxpath(true), _snap_to_page_border(false), + _strict_snapping(true), _include_item_center(false) { _candidates = new std::vector; _points_to_snap_to = new std::vector;