diff options
Diffstat (limited to 'src/kexportdialog.h')
-rwxr-xr-x | src/kexportdialog.h | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/src/kexportdialog.h b/src/kexportdialog.h index 2069ae8..a2151df 100755 --- a/src/kexportdialog.h +++ b/src/kexportdialog.h @@ -20,35 +20,36 @@ #ifndef KEXPORTDIALOG_H #define KEXPORTDIALOG_H -#include <qobject.h> +#include <tqobject.h> #include <klineedit.h> -#include <qlabel.h> -#include <qpushbutton.h> -#include <qstring.h> -#include <qdialog.h> +#include <tqlabel.h> +#include <tqpushbutton.h> +#include <tqstring.h> +#include <tqdialog.h> -class KExportDialog : public QDialog +class KExportDialog : public TQDialog { Q_OBJECT + TQ_OBJECT public: - KExportDialog(QWidget *parent = 0, const char *name = 0 ); + KExportDialog(TQWidget *tqparent = 0, const char *name = 0 ); ~KExportDialog(); - void setOutputDir( QString dir ) ; - void setTemplateFile( QString file ) ; - void setEntityName( QString name ) ; + void setOutputDir( TQString dir ) ; + void setTemplateFile( TQString file ) ; + void setEntityName( TQString name ) ; - QString getTemplateFile() ; - QString getOutputDir() ; - QString getEntityName() ; + TQString getTemplateFile() ; + TQString getOutputDir() ; + TQString getEntityName() ; void modal() ; bool isCanceled() { return m_bCanceled ; } protected: - QString m_outputDir ; - QString m_templateFile ; - QString m_entityName ; + TQString m_outputDir ; + TQString m_templateFile ; + TQString m_entityName ; KLineEdit * m_lineTemplateFile, * m_lineOutputDir, *m_lineEntityName ; bool m_bCanceled ; |