| Summary: | classes in packages are not recognized in add-attribute-dialog | ||
|---|---|---|---|
| Product: | [Applications] umbrello | Reporter: | Vasek Smidl <smidl> |
| Component: | general | Assignee: | Umbrello Development Group <umbrello-devel> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Vasek Smidl
2005-02-26 15:11:17 UTC
CVS commit by okellogg:
BUG:100307 - setupDialog(): Use UMLClassifier::getFullyQualifiedName().
M +1 -0 ChangeLog 1.70
M +1 -1 umbrello/dialogs/umlattributedialog.cpp 1.24
--- kdesdk/umbrello/ChangeLog #1.69:1.70
@@ -30,4 +30,5 @@
96216 96221 96964 97155 97182 97697 97887 97984 98603 98899
99697 100142
+100290 100307
Version 1.3
--- kdesdk/umbrello/umbrello/dialogs/umlattributedialog.cpp #1.23:1.24
@@ -114,5 +114,5 @@ void UMLAttributeDialog::setupDialog() {
UMLClassifier* obj;
for (obj=namesList.first(); obj!=0; obj=namesList.next()) {
- insertType( obj->getName() );
+ insertType( obj->getFullyQualifiedName(".") );
}
|