summaryrefslogtreecommitdiffstats
path: root/kmymoney2/widgets/kmymoneycombo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmymoney2/widgets/kmymoneycombo.cpp')
-rw-r--r--kmymoney2/widgets/kmymoneycombo.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmymoney2/widgets/kmymoneycombo.cpp b/kmymoney2/widgets/kmymoneycombo.cpp
index ad2c1f7..7471de7 100644
--- a/kmymoney2/widgets/kmymoneycombo.cpp
+++ b/kmymoney2/widgets/kmymoneycombo.cpp
@@ -192,7 +192,7 @@ bool KMyMoneyCombo::isInArrowArea(const TQPoint& pos) const
if(!editable())
arrowRect = rect();
- return arrowRect.tqcontains(mapFromGlobal(pos));
+ return arrowRect.contains(mapFromGlobal(pos));
}
void KMyMoneyCombo::keyPressEvent(TQKeyEvent* e)
@@ -233,7 +233,7 @@ void KMyMoneyCombo::focusOutEvent(TQFocusEvent* e)
m_inFocusOutEvent = true;
if(editable() && !currentText().isEmpty()) {
if(m_canCreateObjects) {
- if(!m_completion->selector()->tqcontains(currentText())) {
+ if(!m_completion->selector()->contains(currentText())) {
TQString id;
// annouce that we go into a possible dialog to create an object
// This can be used by upstream widgets to disable filters etc.
@@ -254,7 +254,7 @@ void KMyMoneyCombo::focusOutEvent(TQFocusEvent* e)
// else if we cannot create objects, and the current text is not
// in the list, then we clear the text and the selection.
- } else if(!m_completion->selector()->tqcontains(currentText())) {
+ } else if(!m_completion->selector()->contains(currentText())) {
setCurrentText(TQString());
}
}
@@ -575,7 +575,7 @@ public:
int itemId(const TQString& s) const {
TQMap<TQString, int>::const_iterator it;
- it = m_strings.tqfind(s);
+ it = m_strings.find(s);
if(it != m_strings.end())
return *it;
return -1;