diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kontact/interfaces/core.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kontact/interfaces/core.h')
-rw-r--r-- | kontact/interfaces/core.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kontact/interfaces/core.h b/kontact/interfaces/core.h index 2ebe088f9..2d75fb227 100644 --- a/kontact/interfaces/core.h +++ b/kontact/interfaces/core.h @@ -23,7 +23,7 @@ #ifndef KONTACT_CORE_H #define KONTACT_CORE_H -#include <qdatetime.h> +#include <tqdatetime.h> #include <kdepimmacros.h> #include <kparts/mainwindow.h> #include <kparts/part.h> @@ -54,12 +54,12 @@ class KDE_EXPORT Core : public KParts::MainWindow This is an overloaded member function. It behaves essentially like the above function. */ - virtual void selectPlugin( const QString &plugin ) = 0; + virtual void selectPlugin( const TQString &plugin ) = 0; /** Returns the pointer list of available plugins. */ - virtual QValueList<Kontact::Plugin*> pluginList() const = 0; + virtual TQValueList<Kontact::Plugin*> pluginList() const = 0; /** @internal (for Plugin) @@ -76,20 +76,20 @@ class KDE_EXPORT Core : public KParts::MainWindow /** Emitted when a new day starts */ - void dayChanged( const QDate& ); + void dayChanged( const TQDate& ); protected: - Core( QWidget *parentWidget = 0, const char *name = 0 ); + Core( TQWidget *parentWidget = 0, const char *name = 0 ); - QString lastErrorMessage() const; + TQString lastErrorMessage() const; private slots: - void slotPartDestroyed( QObject * ); + void slotPartDestroyed( TQObject * ); void checkNewDay(); private: - QMap<QCString,KParts::ReadOnlyPart *> mParts; - QDate mLastDate; + TQMap<TQCString,KParts::ReadOnlyPart *> mParts; + TQDate mLastDate; class Private; Private *d; |