X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fline.cpp;h=880a79d60bc48254645794628ce1cb69dbe246fb;hb=baf67656b97e3d61e9223e66ebe4f554e364cd4a;hp=0884d9028b3c9f4a9140abdf87582bf492eb7ee0;hpb=1969804ac3ae69f43ade5c40657954442e0916c2;p=architektonas diff --git a/src/line.cpp b/src/line.cpp index 0884d90..880a79d 100644 --- a/src/line.cpp +++ b/src/line.cpp @@ -132,7 +132,7 @@ level container, it won't get drawn... But we can fix that by making this object call any attached object's (like a dimension only) Draw() function... :-/ */ - attachedDimension = new Dimension(&position, &endpoint, this); + attachedDimension = new Dimension(&position, &endpoint, DTLinear, this); if (parent != NULL) parent->Add(attachedDimension); @@ -394,7 +394,7 @@ void Line::SetDimensionOnLine(Dimension * dimension/*=NULL*/) // If they don't pass one in, create it for the caller. if (dimension == NULL) { - dimension = new Dimension(&position, &endpoint, this); + dimension = new Dimension(&position, &endpoint, DTLinear, this); if (parent) parent->Add(dimension);