Bug 91433 - template parameters contour should be dashed
Summary: template parameters contour should be dashed
Status: RESOLVED FIXED
Alias: None
Product: umbrello
Classification: Applications
Component: general (show other bugs)
Version: 1.3
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Umbrello Development Group
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-10-16 12:25 UTC by mg
Modified: 2004-10-16 16:58 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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() );