summaryrefslogtreecommitdiffstats
path: root/kdelirc/kdelirc/modes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdelirc/kdelirc/modes.cpp')
-rw-r--r--kdelirc/kdelirc/modes.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdelirc/kdelirc/modes.cpp b/kdelirc/kdelirc/modes.cpp
index 5ecd418..5346837 100644
--- a/kdelirc/kdelirc/modes.cpp
+++ b/kdelirc/kdelirc/modes.cpp
@@ -41,8 +41,8 @@ void Modes::loadFromConfig(KConfig &theConfig)
void Modes::generateNulls(const TQStringList &theRemotes)
{
for(TQStringList::const_iterator i = theRemotes.begin(); i != theRemotes.end(); ++i)
- { if(!tqcontains(*i) || !operator[](*i).tqcontains("")) operator[](*i)[""] = Mode(*i, "");
- if(!theDefaults.tqcontains(*i)) theDefaults[*i].isEmpty();
+ { if(!contains(*i) || !operator[](*i).contains("")) operator[](*i)[""] = Mode(*i, "");
+ if(!theDefaults.contains(*i)) theDefaults[*i].isEmpty();
}
}
@@ -59,8 +59,8 @@ const Mode Modes::getDefault(const TQString &remote) const
{
// if(theDefaults[remote] == TQString())
// return Mode(remote, "");
- if(tqcontains(remote))
- if(operator[](remote).tqcontains(theDefaults[remote]))
+ if(contains(remote))
+ if(operator[](remote).contains(theDefaults[remote]))
return operator[](remote)[theDefaults[remote]];
else return Mode(remote, "");
else return Mode(remote, "");