X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fduck.cpp;h=eca6112d99d45131f9b59f320335e9bc3a017b58;hb=be371b33179c1dbd53ef59b3d060f533024ea317;hp=67e28d02badca852131774685b9fb7da720863aa;hpb=334e15ce6c4d9b1f30a168a55e7ef4d31320d568;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/duck.cpp b/synfig-studio/trunk/src/gtkmm/duck.cpp index 67e28d0..eca6112 100644 --- a/synfig-studio/trunk/src/gtkmm/duck.cpp +++ b/synfig-studio/trunk/src/gtkmm/duck.cpp @@ -6,7 +6,7 @@ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley -** Copyright (c) 2007 Chris Moore +** Copyright (c) 2007, 2008 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -74,7 +74,8 @@ Duck::Duck(): editable(false), radius_(false), tangent_(false), - hover_(false) + hover_(false), + ignore_(false) { duck_count++; _DuckCounter::counter++; } Duck::Duck(const synfig::Point &point): @@ -86,7 +87,9 @@ Duck::Duck(const synfig::Point &point): guid_(0), editable(false), radius_(false), - tangent_(false) + tangent_(false), + hover_(false), + ignore_(false) { duck_count++; _DuckCounter::counter++;} Duck::Duck(const synfig::Point &point,const synfig::Point &origin): @@ -97,7 +100,9 @@ Duck::Duck(const synfig::Point &point,const synfig::Point &origin): guid_(0), editable(false), radius_(true), - tangent_(false) + tangent_(false), + hover_(false), + ignore_(false) { duck_count++; _DuckCounter::counter++;} Duck::~Duck() { duck_count--; _DuckCounter::counter--;}