diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /libkonq/konq_historycomm.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkonq/konq_historycomm.h')
-rw-r--r-- | libkonq/konq_historycomm.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/libkonq/konq_historycomm.h b/libkonq/konq_historycomm.h index e02e10a61..ea2a387df 100644 --- a/libkonq/konq_historycomm.h +++ b/libkonq/konq_historycomm.h @@ -20,8 +20,8 @@ #ifndef KONQ_HISTORYCOMM_H #define KONQ_HISTORYCOMM_H -#include <qdatetime.h> -#include <qstringlist.h> +#include <tqdatetime.h> +#include <tqstringlist.h> #include <dcopobject.h> #include <kurl.h> @@ -35,18 +35,18 @@ public: : numberOfTimesVisited(1) {} KURL url; - QString typedURL; - QString title; + TQString typedURL; + TQString title; Q_UINT32 numberOfTimesVisited; - QDateTime firstVisited; - QDateTime lastVisited; + TQDateTime firstVisited; + TQDateTime lastVisited; }; -// QDataStream operators (read and write a KonqHistoryEntry +// TQDataStream operators (read and write a KonqHistoryEntry // from/into a QDataStream -QDataStream& operator<< (QDataStream& s, const KonqHistoryEntry& e); -QDataStream& operator>> (QDataStream& s, KonqHistoryEntry& e); +TQDataStream& operator<< (TQDataStream& s, const KonqHistoryEntry& e); +TQDataStream& operator>> (TQDataStream& s, KonqHistoryEntry& e); /////////////////////////////////////////////////////////////////// @@ -61,16 +61,16 @@ class KonqHistoryComm : public DCOPObject K_DCOP protected: - KonqHistoryComm( QCString objId ) : DCOPObject( objId ) {} + KonqHistoryComm( TQCString objId ) : DCOPObject( objId ) {} k_dcop: - virtual ASYNC notifyHistoryEntry( KonqHistoryEntry e, QCString saveId) = 0; - virtual ASYNC notifyMaxCount( Q_UINT32 count, QCString saveId ) = 0; - virtual ASYNC notifyMaxAge( Q_UINT32 days, QCString saveId ) = 0; - virtual ASYNC notifyClear( QCString saveId ) = 0; - virtual ASYNC notifyRemove( KURL url, QCString saveId ) = 0; - virtual ASYNC notifyRemove( KURL::List url, QCString saveId ) = 0; - virtual QStringList allURLs() const = 0; + virtual ASYNC notifyHistoryEntry( KonqHistoryEntry e, TQCString saveId) = 0; + virtual ASYNC notifyMaxCount( Q_UINT32 count, TQCString saveId ) = 0; + virtual ASYNC notifyMaxAge( Q_UINT32 days, TQCString saveId ) = 0; + virtual ASYNC notifyClear( TQCString saveId ) = 0; + virtual ASYNC notifyRemove( KURL url, TQCString saveId ) = 0; + virtual ASYNC notifyRemove( KURL::List url, TQCString saveId ) = 0; + virtual TQStringList allURLs() const = 0; }; |