* initialzing variables in constructors

This commit is contained in:
ela 2007-05-06 14:37:51 +00:00
parent 9140f18e4a
commit 81b1836e59
2 changed files with 4 additions and 0 deletions

View File

@ -51,6 +51,8 @@ Component::Component()
cx = 0;
cy = 0;
tx = 0;
ty = 0;
Arcs.setAutoDelete(true);
Lines.setAutoDelete(true);

View File

@ -20,6 +20,8 @@
Element::Element()
{
Type = isDummy;
isSelected = false;
cx = cy = x1 = y1 = x2 = y2 = 0;
}
Element::~Element()