diff options
Diffstat (limited to 'akregator/src/storagefactorydummyimpl.cpp')
-rw-r--r-- | akregator/src/storagefactorydummyimpl.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/akregator/src/storagefactorydummyimpl.cpp b/akregator/src/storagefactorydummyimpl.cpp index 2f0bccfb9..70f5a956d 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"); } |