[Uml-devel] branches/KDE/3.5/kdesdk/umbrello
Oliver Kellogg
okellogg at users.sourceforge.net
Thu Feb 15 19:48:50 UTC 2007
SVN commit 633931 by okellogg:
createAutoAssociations(): Handle Uml::dt_EntityRelationship.
Thanks to Antoine Dopffer for the fix.
BUG:125146
M +2 -0 ChangeLog
M +2 -1 umbrello/umlview.cpp
--- branches/KDE/3.5/kdesdk/umbrello/ChangeLog #633930:633931
@@ -1,5 +1,7 @@
Version 1.5.7
+
* Bugs fixed from http://bugs.kde.org:
+* Relationships for entities do not live outside of an entity relationship diagram (125146)
* Javascript Code Generation creates bad format methods (135540)
* Crash when deleting the link between a package and a class (141602)
--- branches/KDE/3.5/kdesdk/umbrello/umbrello/umlview.cpp #633930:633931
@@ -1927,7 +1927,8 @@
if (widget == NULL ||
(m_Type != Uml::dt_Class &&
m_Type != Uml::dt_Component &&
- m_Type != Uml::dt_Deployment))
+ m_Type != Uml::dt_Deployment &&
+ m_Type != Uml::dt_EntityRelationship))
return;
// Recipe:
// If this widget has an underlying UMLCanvasObject then
More information about the umbrello-devel
mailing list