summaryrefslogtreecommitdiffstats
path: root/akregator/src/storagefactoryregistry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'akregator/src/storagefactoryregistry.cpp')
-rw-r--r--akregator/src/storagefactoryregistry.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/akregator/src/storagefactoryregistry.cpp b/akregator/src/storagefactoryregistry.cpp
index f6162ef9..608c05b1 100644
--- a/akregator/src/storagefactoryregistry.cpp
+++ b/akregator/src/storagefactoryregistry.cpp
@@ -18,8 +18,8 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
As a special exception, permission is given to link this program
- with any edition of Qt, and distribute the resulting executable,
- without including the source code for Qt in the source distribution.
+ with any edition of TQt, and distribute the resulting executable,
+ without including the source code for TQt in the source distribution.
*/
#include "storagefactory.h"
@@ -52,7 +52,7 @@ StorageFactoryRegistry* StorageFactoryRegistry::self()
bool StorageFactoryRegistry::registerFactory(StorageFactory* factory, const TQString& typestr)
{
- if (tqcontainsFactory(typestr))
+ if (containsFactory(typestr))
return false;
d->map[typestr] = factory;
return true;
@@ -68,7 +68,7 @@ StorageFactory* StorageFactoryRegistry::getFactory(const TQString& typestr)
return d->map[typestr];
}
-bool StorageFactoryRegistry::tqcontainsFactory(const TQString& typestr) const
+bool StorageFactoryRegistry::containsFactory(const TQString& typestr) const
{
return d->map.tqcontains(typestr);
}