From 6e21bc798ba1066147d69dcc2d5c222ffafb9a90 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 06:08:18 +0000 Subject: rename the following methods: tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- knewstuff/provider.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'knewstuff/provider.cpp') diff --git a/knewstuff/provider.cpp b/knewstuff/provider.cpp index 813aee041..c1d12853c 100644 --- a/knewstuff/provider.cpp +++ b/knewstuff/provider.cpp @@ -53,11 +53,11 @@ static ProviderPrivate *d_prov(const Provider *p) d_ptr_prov = new TQPtrDict(); d_ptr_prov->setAutoDelete(true); } - ProviderPrivate *ret = d_ptr_prov->tqfind((void*)p); + ProviderPrivate *ret = d_ptr_prov->find((void*)p); if(!ret) { ret = new ProviderPrivate(); - d_ptr_prov->tqreplace((void*)p, ret); + d_ptr_prov->replace((void*)p, ret); } return ret; } @@ -89,7 +89,7 @@ Provider::~Provider() { if (d_ptr_prov) { - ProviderPrivate *p = d_ptr_prov->tqfind(this); + ProviderPrivate *p = d_ptr_prov->find(this); if (p) d_ptr_prov->remove(p); -- cgit v1.2.3