[Uml-devel] [Bug 144442] Crash when loading xmi with actor as object of sequence diagram
Oliver Kellogg
okellogg at users.sourceforge.net
Fri Apr 20 05:28:45 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=144442
okellogg users sourceforge net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From okellogg users sourceforge net 2007-04-20 07:28 -------
SVN commit 656062 by okellogg:
activate(): Resolve m_pObject before doing anything else.
BUG:144442
M +1 -0 ChangeLog
M +3 -3 umbrello/umlwidget.cpp
--- branches/KDE/3.5/kdesdk/umbrello/ChangeLog #656061:656062
@ -33,6 +33,7 @
* Class diagram in folder not loaded correctly from xmi (144119)
* Sequence diagram crashes during message inserting (144293)
* No synchronisation of comments when round-tripping (144346)
+* Crash when loading xmi with actor as object of sequence diagram (144442)
Version 1.5.61
--- branches/KDE/3.5/kdesdk/umbrello/umbrello/umlwidget.cpp #656061:656062
@ -469,9 +469,6 @
}
bool UMLWidget::activate(IDChangeLog* /*ChangeLog = 0 */) {
- setFont( m_Font );
- setSize( getWidth(), getHeight() );
- m_bActivated = true;
if (widgetHasUMLObject(m_Type) && m_pObject == NULL) {
m_pObject = m_pDoc->findObjectById(m_nId);
if (m_pObject == NULL) {
@ -480,6 +477,9 @
return false;
}
}
+ setFont(m_Font);
+ setSize(getWidth(), getHeight());
+ m_bActivated = true;
updateComponentSize();
if( m_pView -> getPastePoint().x() != 0 ) {
FloatingTextWidget * ft = 0;
More information about the umbrello-devel
mailing list