Bug 91433

Summary: template parameters contour should be dashed
Product: [Applications] umbrello Reporter: mg <gregee123>
Component: generalAssignee: Umbrello Development Group <umbrello-devel>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: 1.3   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:

Description mg 2004-10-16 12:25:51 UTC
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
Comment 1 Jonathan Riddell 2004-10-16 16:58:48 UTC
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() );