Fixed typo.
[synfig.git] / synfig-core / trunk / src / synfig / vector.h
index c46a773..e44137a 100644 (file)
@@ -71,7 +71,7 @@ private:
        value_type _x, _y;
 
 public:
-       Vector() { };
+       Vector(): _x(0.0), _y(0.0) { };
        Vector(const value_type &x, const value_type &y):_x(x),_y(y) { };
 
        bool is_valid()const { return !(isnan(_x) || isnan(_y)); }