summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/sync/sink.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/sync/sink.h')
-rw-r--r--kipi-plugins/sync/sink.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kipi-plugins/sync/sink.h b/kipi-plugins/sync/sink.h
index feabf3d..3ef8cfc 100644
--- a/kipi-plugins/sync/sink.h
+++ b/kipi-plugins/sync/sink.h
@@ -19,7 +19,7 @@
#ifndef SINK_H
#define SINK_H
-#include <qstring.h>
+#include <tqstring.h>
#include "libkipi2/interface.h"
#include <kconfig.h>
@@ -41,18 +41,18 @@ namespace KIPISyncPlugin
class Sink : public KIPI2::Interface
{
public:
- Sink(unsigned int sinkId, QString name, KConfig* pConfig, KWallet::Wallet* pWallet);
+ Sink(unsigned int sinkId, TQString name, KConfig* pConfig, KWallet::Wallet* pWallet);
unsigned int SinkId();
/// The Name of the Sink as chosen by the user.
- QString Name();
+ TQString Name();
/// An internal, unique type as specified by the sink.
- virtual QString Type() = 0;
+ virtual TQString Type() = 0;
/// Some information about the sink type for the benefit of the user.
- virtual QString TypeDescription() = 0;
+ virtual TQString TypeDescription() = 0;
virtual const KIPI2::CollectionList* getCollections() = 0;
@@ -63,12 +63,12 @@ public:
virtual void Disconnect() { };
- //virtual void asQListViewItem(QListView* pParent) = 0;
+ //virtual void asTQListViewItem(TQListView* pParent) = 0;
protected:
unsigned int mSinkId;
- QString mName;
+ TQString mName;
};
@@ -77,9 +77,9 @@ protected:
class Sink2 : Sink
{
public:
- Sink2(unsigned int sinkId, QString name, KConfig* pConfig, KWallet::Wallet* pWallet);
- QString Type();
- QString TypeDescription();
+ Sink2(unsigned int sinkId, TQString name, KConfig* pConfig, KWallet::Wallet* pWallet);
+ TQString Type();
+ TQString TypeDescription();
KIPI2::CollectionList* getCollections();
void Save(KConfig* pConfig, KWallet::Wallet* pWallet);
};