diff options
Diffstat (limited to 'kexi/formeditor/form.cpp')
-rw-r--r-- | kexi/formeditor/form.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kexi/formeditor/form.cpp b/kexi/formeditor/form.cpp index 6acf139c..e8b25c84 100644 --- a/kexi/formeditor/form.cpp +++ b/kexi/formeditor/form.cpp @@ -176,7 +176,7 @@ Form::commonParentContainer(WidgetList *wlist) // Creates a list of all widget parents for(TQWidget *w = wlist->first(); w; w = wlist->next()) { - if(list->tqfindRef(w->parentWidget()) == -1) + if(list->findRef(w->parentWidget()) == -1) list->append(w->parentWidget()); } @@ -465,14 +465,14 @@ Form::addWidgetToTabStops(ObjectTreeItem *it) // For composed widgets, we check if one of the child can have focus for(TQObjectListIterator chIt(clo); chIt.current(); ++chIt) { if(chIt.current()->isWidgetType()) {//TQ_TabFocus flag will be checked later! - if(d->tabstops.tqfindRef(it) == -1) { + if(d->tabstops.findRef(it) == -1) { d->tabstops.append(it); return; } } } } - else if(d->tabstops.tqfindRef(it) == -1) // not yet in the list + else if(d->tabstops.findRef(it) == -1) // not yet in the list d->tabstops.append(it); } |