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 /korganizer/templatemanagementdialog.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 'korganizer/templatemanagementdialog.h')
-rw-r--r-- | korganizer/templatemanagementdialog.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/korganizer/templatemanagementdialog.h b/korganizer/templatemanagementdialog.h index 5e0a4a616..fbc4c5125 100644 --- a/korganizer/templatemanagementdialog.h +++ b/korganizer/templatemanagementdialog.h @@ -38,7 +38,7 @@ #ifndef TEMPLATEMANAGEMENTDIALOG_H #define TEMPLATEMANAGEMENTDIALOG_H -#include <qstringlist.h> +#include <tqstringlist.h> #include "template_management_dialog_base.h" @@ -47,30 +47,30 @@ class TemplateManagementDialog: public KDialogBase { Q_OBJECT public: - TemplateManagementDialog( QWidget *parent, const QStringList& templates ); + TemplateManagementDialog( TQWidget *parent, const TQStringList& templates ); signals: /* Emitted whenever the user hits apply, indicating that the currently selected template should be loaded into to the incidence editor which triggered this. */ - void loadTemplate( const QString& templateName ); + void loadTemplate( const TQString& templateName ); /* Emitted whenever the user wants to add teh current incidence as a template with the given name. */ - void saveTemplate( const QString& templateName ); + void saveTemplate( const TQString& templateName ); /* Emitted when the dialog changed the list of templates. Calling code can the replace the list that was handed in with the one this signal transports. */ - void templatesChanged( const QStringList& templates ); + void templatesChanged( const TQStringList& templates ); protected slots: void slotAddTemplate(); void slotDeleteTemplate(); void slotApplyTemplate(); - void slotUpdateDeleteButton( QListBoxItem *item ); + void slotUpdateDeleteButton( TQListBoxItem *item ); void slotOk(); private: TemplateManagementDialog_base *m_base; - QStringList m_templates; - QString m_newTemplate; + TQStringList m_templates; + TQString m_newTemplate; bool m_changed; }; |