| Summary: | template parameters contour should be dashed | ||
|---|---|---|---|
| Product: | [Applications] umbrello | Reporter: | mg <gregee123> |
| Component: | general | Assignee: | Umbrello Development Group <umbrello-devel> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.3 | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
mg
2004-10-16 12:25:51 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() );
|