summaryrefslogtreecommitdiffstats
path: root/src/kvirc/kvs/kvi_kvs_treenode_switchlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kvirc/kvs/kvi_kvs_treenode_switchlist.cpp')
-rw-r--r--src/kvirc/kvs/kvi_kvs_treenode_switchlist.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kvirc/kvs/kvi_kvs_treenode_switchlist.cpp b/src/kvirc/kvs/kvi_kvs_treenode_switchlist.cpp
index 32018c2..305483d 100644
--- a/src/kvirc/kvs/kvi_kvs_treenode_switchlist.cpp
+++ b/src/kvirc/kvs/kvi_kvs_treenode_switchlist.cpp
@@ -86,7 +86,7 @@ void KviKvsTreeNodeSwitchList::addShort(int iShortKey,KviKvsTreeNodeData * p)
m_pShortSwitchDict->setAutoDelete(true);
}
- m_pShortSwitchDict->tqreplace(iShortKey,p);
+ m_pShortSwitchDict->replace(iShortKey,p);
p->setParent(this);
}
@@ -98,7 +98,7 @@ void KviKvsTreeNodeSwitchList::addLong(const TQString &szLongKey,KviKvsTreeNodeD
m_pLongSwitchDict->setAutoDelete(true);
}
- m_pLongSwitchDict->tqreplace(szLongKey,p);
+ m_pLongSwitchDict->replace(szLongKey,p);
p->setParent(this);
}
@@ -145,7 +145,7 @@ KviKvsTreeNodeData * KviKvsTreeNodeSwitchList::getStandardRebindingSwitch()
KviKvsTreeNodeData * d;
if(m_pShortSwitchDict)
{
- d = m_pShortSwitchDict->tqfind('r');
+ d = m_pShortSwitchDict->find('r');
if(d)
{
m_pShortSwitchDict->setAutoDelete(false);
@@ -156,7 +156,7 @@ KviKvsTreeNodeData * KviKvsTreeNodeSwitchList::getStandardRebindingSwitch()
}
if(m_pLongSwitchDict)
{
- d = m_pLongSwitchDict->tqfind("rebind");
+ d = m_pLongSwitchDict->find("rebind");
if(d)
{
m_pLongSwitchDict->setAutoDelete(false);