diff options
Diffstat (limited to 'kontact/plugins/kpilot/summarywidget.h')
-rw-r--r-- | kontact/plugins/kpilot/summarywidget.h | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/kontact/plugins/kpilot/summarywidget.h b/kontact/plugins/kpilot/summarywidget.h index 94fda7e55..ab221b4c2 100644 --- a/kontact/plugins/kpilot/summarywidget.h +++ b/kontact/plugins/kpilot/summarywidget.h @@ -30,13 +30,13 @@ #include <dcopobject.h> #include <pilotDaemonDCOP.h> -#include <qmap.h> -#include <qpixmap.h> -#include <qptrlist.h> -#include <qstringlist.h> -#include <qtimer.h> -#include <qwidget.h> -#include <qdatetime.h> +#include <tqmap.h> +#include <tqpixmap.h> +#include <tqptrlist.h> +#include <tqstringlist.h> +#include <tqtimer.h> +#include <tqwidget.h> +#include <tqdatetime.h> class QGridLayout; class QLabel; @@ -48,47 +48,47 @@ class SummaryWidget : public Kontact::Summary, public DCOPObject K_DCOP public: - SummaryWidget( QWidget *parent, const char *name = 0 ); + SummaryWidget( TQWidget *parent, const char *name = 0 ); virtual ~SummaryWidget(); int summaryHeight() const { return 1; } - QStringList configModules() const; + TQStringList configModules() const; k_dcop: // all the information is pushed to Kontact by the daemon, to remove the chance of Kontact calling a daemon // that is blocked for some reason, and blocking itself. - void receiveDaemonStatusDetails( QDateTime, QString, QStringList, QString, QString, QString, bool ); + void receiveDaemonStatusDetails( TQDateTime, TQString, TQStringList, TQString, TQString, TQString, bool ); private slots: void updateView(); - void showSyncLog( const QString &filename ); + void showSyncLog( const TQString &filename ); void startKPilot(); - void slotAppRemoved( const QCString & ); + void slotAppRemoved( const TQCString & ); private: - QTimer mTimer; + TQTimer mTimer; - QLabel*mSyncTimeTextLabel; - QLabel*mSyncTimeLabel; + TQLabel*mSyncTimeTextLabel; + TQLabel*mSyncTimeLabel; KURLLabel*mShowSyncLogLabel; - QLabel*mPilotUserTextLabel; - QLabel*mPilotUserLabel; - QLabel*mPilotDeviceTextLabel; - QLabel*mPilotDeviceLabel; - QLabel*mDaemonStatusTextLabel; - QLabel*mDaemonStatusLabel; - QLabel*mConduitsTextLabel; - QLabel*mConduitsLabel; - QLabel*mNoConnectionLabel; + TQLabel*mPilotUserTextLabel; + TQLabel*mPilotUserLabel; + TQLabel*mPilotDeviceTextLabel; + TQLabel*mPilotDeviceLabel; + TQLabel*mDaemonStatusTextLabel; + TQLabel*mDaemonStatusLabel; + TQLabel*mConduitsTextLabel; + TQLabel*mConduitsLabel; + TQLabel*mNoConnectionLabel; KURLLabel*mNoConnectionStartLabel; - QGridLayout *mLayout; + TQGridLayout *mLayout; - QDateTime mLastSyncTime; - QString mDaemonStatus; - QStringList mConduits; - QString mSyncLog; - QString mUserName; - QString mPilotDevice; + TQDateTime mLastSyncTime; + TQString mDaemonStatus; + TQStringList mConduits; + TQString mSyncLog; + TQString mUserName; + TQString mPilotDevice; bool mDCOPSuccess; bool mStartedDaemon; // Record whether the daemon was started by kontact |