Version: 1.3 (using KDE KDE 3.3.0) Installed from: Compiled From Sources OS: Linux template parameters contour should be dashed not solid. See here: http://www.csci.csusb.edu/dick/samples/uml.template.gif
CVS commit by jriddell: Fix beastie 91433 template parameters contour should be dashed BUG:91433 M +3 -0 classwidget.cpp 1.33 --- kdesdk/umbrello/umbrello/classwidget.cpp #1.32:1.33 @@ -191,4 +191,7 @@ void ClassWidget::draw(QPainter & p, int QFont font = UMLWidget::getFont(); UMLWidget::draw(p, offsetX, offsetY); + QPen pen = p.pen(); + pen.setStyle(DotLine); + p.setPen(pen); p.drawRect( offsetX + width() - templatesBoxSize.width(), offsetY, templatesBoxSize.width(), templatesBoxSize.height() );