summaryrefslogtreecommitdiffstats
path: root/kparts/historyprovider.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kparts/historyprovider.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kparts/historyprovider.h')
-rw-r--r--kparts/historyprovider.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kparts/historyprovider.h b/kparts/historyprovider.h
index de0b4bf2b..40bf36aa7 100644
--- a/kparts/historyprovider.h
+++ b/kparts/historyprovider.h
@@ -20,8 +20,8 @@
#ifndef KHISTORYPROVIDER_H
#define KHISTORYPROVIDER_H
-#include <qdict.h>
-#include <qobject.h>
+#include <tqdict.h>
+#include <tqobject.h>
#include <kdelibs_export.h>
@@ -48,7 +48,7 @@ public:
/**
* Creates a KHistoryProvider with an optional parent and name
*/
- HistoryProvider( QObject *parent = 0L, const char *name = 0 );
+ HistoryProvider( TQObject *parent = 0L, const char *name = 0 );
/**
* Destroys the provider.
@@ -58,17 +58,17 @@ public:
/**
* @returns true if @p item is present in the history.
*/
- virtual bool contains( const QString& item ) const;
+ virtual bool contains( const TQString& item ) const;
/**
* Inserts @p item into the history.
*/
- virtual void insert( const QString& item );
+ virtual void insert( const TQString& item );
/**
* Removes @p item from the history.
*/
- virtual void remove( const QString& item );
+ virtual void remove( const TQString& item );
/**
* Clears the history. The cleared() signal is emitted after clearing.
@@ -87,12 +87,12 @@ signals:
* history has changed. Put those items that were added or removed from the
* history into @p items.
*/
- void updated( const QStringList& items );
+ void updated( const TQStringList& items );
/**
* Emitted after the item has been inserted
*/
- void inserted( const QString& item );
+ void inserted( const TQString& item );
private:
static HistoryProvider *s_self;