Summary: | crash when deleteing an attribute/operation etc | ||
---|---|---|---|
Product: | [Applications] umbrello | Reporter: | Jonathan Riddell <jr> |
Component: | general | Assignee: | Umbrello Development Group <umbrello-devel> |
Status: | RESOLVED FIXED | ||
Severity: | crash | ||
Priority: | HI | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Jonathan Riddell
2004-01-07 00:08:40 UTC
I believe this is now fixed, it was related to both bugs in the slot/signal connection code in the code generation as well as bad initialization of operations. If it isnt fixed, please pass along an XMI file which shows the bug. umbrello crashes when the class is connected(class diagram) to others and I remove the attributes (my uml proyect have c++/kde imported code) I use svn version I fix this temporaly
I don't know what problem can cause this fix
In associationwidget.cpp
function: saveToXMI
diff:
3139a3140
> m_pObject = 0;
> umbrello crashes when the class is connected(class diagram) to others > and I remove the attributes Please post the backtrace, the necessary file(s) (XMI and/or C++ imported headers) and step-by-step instructions on how to produce the problem. > I fix this temporaly > [...] > In associationwidget.cpp > function: saveToXMI Hmm well that's not really the Right Fix (TM) Found the problem anyway, fix is forthcoming SVN commit 423555 by okellogg: setUMLObject(), slotAttributeRemoved(): New. Cater to proper suicide if the underlying UMLAttribute is removed. BUG:72016 M +13 -0 associationwidget.cpp M +15 -0 associationwidget.h --- trunk/KDE/kdesdk/umbrello/umbrello/associationwidget.cpp #423554:423555 @@ -2987,7 +2987,20 @@ return rectangle; } +void AssociationWidget::setUMLObject(UMLObject *obj) { + WidgetBase::setUMLObject(obj); + if (obj && obj->getBaseType() == Uml::ot_Attribute) { + UMLClassifier *klass = static_cast<UMLClassifier*>(obj->parent()); + connect(klass, SIGNAL(attributeRemoved(UMLObject*)), + this, SLOT(slotAttributeRemoved(UMLObject*))); + } +} +void AssociationWidget::slotAttributeRemoved(UMLObject* obj) { + kdDebug() << "AssociationWidget::slotAttributeRemoved(" << obj->getName() << ")" << endl; + m_pView->removeAssoc(this); +} + void AssociationWidget::init (UMLView *view) { m_pView = view; // pointer to parent viewwidget object --- trunk/KDE/kdesdk/umbrello/umbrello/associationwidget.h #423554:423555 @@ -560,6 +560,13 @@ void computeAssocClassLine(); /** + * Overriding the method from WidgetBase because we need to do + * something extra in case this AssociationWidget represents + * an attribute of a classifier. + */ + void setUMLObject(UMLObject *obj); + + /** * Saves this widget to the <assocwidget> XMI element. */ void saveToXMI( QDomDocument & qDoc, QDomElement & qElement ); @@ -924,6 +931,14 @@ void slotClearAllSelected(); /** + * Connected to UMLClassifier::attributeRemoved() in case this + * AssociationWidget is linked to a classifer's attribute type. + * + * @param obj The UMLAttribute removed. + */ + void slotAttributeRemoved(UMLObject* obj); + + /** * Synchronize this widget from the UMLAssociation. */ void syncToModel(); SVN commit 439865 by okellogg: CCBUG:72016 - It turns out that the bug was not completely fixed; the reoccurrence is fixed by the change below. Unfortunately this checkin did not make it into version 1.4.2. SVN commit 439023 by okellogg: Backport commit #439013 from trunk: > loadFromXMI(): use setUMLObject() so that the attributeRemoved signal gets connected. M +1 -1 associationwidget.cpp --- branches/KDE/3.5/kdesdk/umbrello/umbrello/associationwidget.cpp #439022:439023 @@ -3323,7 +3323,7 @@ } else { const Uml::Object_Type ot = myObj->getBaseType(); if (ot == ot_Attribute || ot == ot_Operation) { - m_pObject = myObj; + setUMLObject(myObj); QString type = qElement.attribute( "type", "-1" ); Uml::Association_Type aType = (Uml::Association_Type) type.toInt(); setAssocType(aType); M +2 -2 ChangeLog --- branches/KDE/3.5/kdesdk/umbrello/ChangeLog #439864:439865 @@ -6,12 +6,12 @@ * Change interface into class and vice versa (if abstract and no attributes) * Bugs fixed / wishes implemented (see http://bugs.kde.org) -57588 67719 79433 87252 88117 97162 105564 108223 109591 +57588 67719 72016 79433 87252 88117 97162 105564 108223 109591 Version 1.4.2 (maintenance release) * Bugs fixed from http://bugs.kde.org : -72016 97188 103170 106183 106356 106632 106673 107101 107551 108688 +97188 103170 106183 106356 106632 106673 107101 107551 108688 Version 1.4.1 (maintenance release) |