diff options
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; |