summaryrefslogtreecommitdiffstats
path: root/kded/kdedmodule.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kded/kdedmodule.cpp')
-rw-r--r--kded/kdedmodule.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kded/kdedmodule.cpp b/kded/kdedmodule.cpp
index 426ec21da..ca28a5c62 100644
--- a/kded/kdedmodule.cpp
+++ b/kded/kdedmodule.cpp
@@ -69,14 +69,14 @@ void KDEDModule::insert(const TQCString &app, const TQCString &key, KShared *obj
// appKey acts as a placeholder
KEntryKey appKey(app, 0);
- d->objMap->tqreplace(appKey, 0);
+ d->objMap->replace(appKey, 0);
KEntryKey indexKey(app, key);
// Prevent deletion in case the same object is inserted again.
KSharedPtr<KShared> _obj = obj;
- d->objMap->tqreplace(indexKey, _obj);
+ d->objMap->replace(indexKey, _obj);
resetIdle();
}