summaryrefslogtreecommitdiffstats
path: root/korganizer/templatemanagementdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/templatemanagementdialog.h')
-rw-r--r--korganizer/templatemanagementdialog.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/korganizer/templatemanagementdialog.h b/korganizer/templatemanagementdialog.h
index 5e0a4a61..fbc4c512 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;
};