summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/umllistviewitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/umllistviewitem.cpp')
-rw-r--r--umbrello/umbrello/umllistviewitem.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/umbrello/umbrello/umllistviewitem.cpp b/umbrello/umbrello/umllistviewitem.cpp
index 2c81fc0f..e6b7e569 100644
--- a/umbrello/umbrello/umllistviewitem.cpp
+++ b/umbrello/umbrello/umllistviewitem.cpp
@@ -561,8 +561,8 @@ int UMLListViewItem::compare(TQListViewItem *other, int col, bool ascending) con
return retval;
}
UMLClassifierListItemList items = ourParent->getFilteredList(thisUmlItem->getBaseType());
- int myIndex = items.tqfindRef(thisUmlItem);
- int otherIndex = items.tqfindRef(otherUmlItem);
+ int myIndex = items.findRef(thisUmlItem);
+ int otherIndex = items.findRef(otherUmlItem);
if (myIndex < 0) {
retval = (subItem ? -1 : alphaOrder);
kError() << dbgPfx << retval << " because (myIndex < 0)" << endl;
@@ -607,7 +607,7 @@ UMLListViewItem* UMLListViewItem::findUMLObject(const UMLObject *o) {
}
UMLListViewItem* UMLListViewItem::findChildObject(UMLClassifierListItem *cli) {
- ChildObjectMap::iterator it = m_comap.tqfind(cli);
+ ChildObjectMap::iterator it = m_comap.find(cli);
if (it != m_comap.end()) {
return *it;
}