summaryrefslogtreecommitdiffstats
path: root/kio/bookmarks/kbookmarkexporter.h
diff options
context:
space:
mode:
Diffstat (limited to 'kio/bookmarks/kbookmarkexporter.h')
-rw-r--r--kio/bookmarks/kbookmarkexporter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kio/bookmarks/kbookmarkexporter.h b/kio/bookmarks/kbookmarkexporter.h
index 19978b3dd..0943d6cbe 100644
--- a/kio/bookmarks/kbookmarkexporter.h
+++ b/kio/bookmarks/kbookmarkexporter.h
@@ -23,7 +23,7 @@
#ifndef __kbookmarkexporter_h
#define __kbookmarkexporter_h
-#include <qtextstream.h>
+#include <tqtextstream.h>
#include <kbookmark.h>
/**
@@ -32,13 +32,13 @@
class KIO_EXPORT KBookmarkExporterBase
{
public:
- KBookmarkExporterBase(KBookmarkManager* mgr, const QString & fileName)
+ KBookmarkExporterBase(KBookmarkManager* mgr, const TQString & fileName)
: m_fileName(fileName), m_pManager(mgr)
{ ; }
virtual ~KBookmarkExporterBase() {}
virtual void write(KBookmarkGroup) = 0;
protected:
- QString m_fileName;
+ TQString m_fileName;
KBookmarkManager* m_pManager;
private:
class KBookmarkExporterBasePrivate *d;