summaryrefslogtreecommitdiffstats
path: root/akregator/src/storagefactorydummyimpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'akregator/src/storagefactorydummyimpl.cpp')
-rw-r--r--akregator/src/storagefactorydummyimpl.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/akregator/src/storagefactorydummyimpl.cpp b/akregator/src/storagefactorydummyimpl.cpp
index 2f0bccfb..70f5a956 100644
--- a/akregator/src/storagefactorydummyimpl.cpp
+++ b/akregator/src/storagefactorydummyimpl.cpp
@@ -25,26 +25,26 @@
#include "storagedummyimpl.h"
#include <klocale.h>
-#include <qstring.h>
-#include <qstringlist.h>
-#include <qwidget.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
+#include <tqwidget.h>
namespace Akregator {
namespace Backend {
-Storage* StorageFactoryDummyImpl::createStorage(const QStringList& params) const
+Storage* StorageFactoryDummyImpl::createStorage(const TQStringList& params) const
{
Storage* storage = new StorageDummyImpl;
storage->initialize(params);
return storage;
}
-QString StorageFactoryDummyImpl::key() const
+TQString StorageFactoryDummyImpl::key() const
{
return "dummy";
}
-QString StorageFactoryDummyImpl::name() const
+TQString StorageFactoryDummyImpl::name() const
{
return i18n("No Archive");
}