[Uml-devel] [Bug 143319] Operation Properties "Type" combo box too small
Oliver Kellogg
okellogg at users.sourceforge.net
Thu Mar 22 05:39:49 UTC 2007
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=143319
okellogg users sourceforge net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From okellogg users sourceforge net 2007-03-22 06:39 -------
SVN commit 645266 by okellogg:
Apply attachment 20064 from Wickersheimer Jeremy:
> The patch just set the column stretch factor for col 1 and 3 (name and type
> respectively) [...]
Thank you for contributing.
BUG:143319
M +1 -0 ChangeLog
M +1 -0 THANKS
M +4 -0 umbrello/dialogs/umloperationdialog.cpp
--- branches/KDE/3.5/kdesdk/umbrello/ChangeLog #645265:645266
@ -27,6 +27,7 @
* Ada code generator always generates methods abstract even if abstract box
not checked (142093)
* Missing "with" on Ada code generation for aggregation (142392)
+* Operation Properties "Type" combo box too small (143319)
Version 1.5.61
--- branches/KDE/3.5/kdesdk/umbrello/THANKS #645265:645266
@ -81,6 +81,7 @
Jean Vittor <jean.vittor wanadoo fr>
Egbert Voigt <Egbert.Voigt alcatel de>
Stefan Walter <sw gegenunendlich de>
+Jeremy Wickersheimer <jwickers gmail com>
Yurgen Wolfgang <raptorsforever softhome net>
Maciej J. Woloszyk <mat esi com pl>
Tobias Wulff <Tobias-Wulff codeeye de>
--- branches/KDE/3.5/kdesdk/umbrello/umbrello/dialogs/umloperationdialog.cpp #645265:645266
@ -64,6 +64,10 @
m_pGenGB = new QGroupBox(i18n("General Properties"), plainPage() );
QGridLayout * genLayout = new QGridLayout(m_pGenGB, 3, 4 );
+ genLayout -> setColStretch(1, 1);
+ genLayout -> setColStretch(3, 1);
+ genLayout -> addColSpacing(1, 200);
+ genLayout -> addColSpacing(3, 200);
genLayout -> setMargin(margin);
genLayout -> setSpacing(10);
More information about the umbrello-devel
mailing list