[Uml-devel] kdesdk/umbrello/umbrello/refactoring
Luis De la Parra Blum
lparrab at gmx.net
Thu Apr 3 14:30:34 UTC 2003
CVS commit by luis:
the folders "Super" and "Derived" no longer accept drops (you can not now to which super class or which derived class you want the drop to go)
M +2 -0 refactoringassistant.cpp 1.3
--- kdesdk/umbrello/umbrello/refactoring/refactoringassistant.cpp #1.2:1.3
@@ -253,4 +253,5 @@ void RefactoringAssistant::addClassifier
{
superFolder = new KListViewItem( classifierItem, i18n("Super") );
+ superFolder->setExpandable( true );
QPtrList<UMLClassifier> super = classifier->findSuperClassConcepts( m_doc );
for( UMLClassifier *cl = super.first(); cl ; cl = super.next() )
@@ -271,4 +272,5 @@ void RefactoringAssistant::addClassifier
//add derived classifiers
derivedFolder = new KListViewItem( classifierItem, i18n("Derived") );
+ derivedFolder->setExpandable( true );
QPtrList<UMLClassifier> derived = classifier->findSubClassConcepts ( m_doc );
for( UMLClassifier *d = derived.first(); d ; d = derived.next() )
More information about the umbrello-devel
mailing list