summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/sync/sinks.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/sync/sinks.h')
-rw-r--r--kipi-plugins/sync/sinks.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kipi-plugins/sync/sinks.h b/kipi-plugins/sync/sinks.h
index 21d70fa..3636c97 100644
--- a/kipi-plugins/sync/sinks.h
+++ b/kipi-plugins/sync/sinks.h
@@ -19,8 +19,8 @@
#ifndef SINKS_H
#define SINKS_H
-#include <qptrlist.h>
-#include <qlistview.h>
+#include <tqptrlist.h>
+#include <tqlistview.h>
// Some sinks may wish to make use of the Wallet to store sensitive
// information so we manage it here.
@@ -36,11 +36,11 @@ namespace KIPISyncPlugin
class Sink;
/* Simple Stub Class to allow easy access to Sinks from GUI elements */
-class SinkQListViewItem : public QListViewItem
+class SinkTQListViewItem : public TQListViewItem
{
public:
- SinkQListViewItem(Sink* pSink, QListView* pParent);
+ SinkTQListViewItem(Sink* pSink, TQListView* pParent);
Sink* GetSink();
void Refresh();
@@ -51,7 +51,7 @@ private:
};
-typedef QPtrList<Sink> SinkPtrList;
+typedef TQPtrList<Sink> SinkPtrList;
/* Container class for all Sinks */
class Sinks
@@ -61,10 +61,10 @@ public:
Sinks();
~Sinks();
- Sink* Add(QString type, QString name);
+ Sink* Add(TQString type, TQString name);
void Remove(Sink* pSink);
void Save();
- void asQListView(QListView* pListView);
+ void asTQListView(TQListView* pListView);
private:
void Load();