diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-30 20:31:54 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-30 20:31:54 +0000 |
commit | 8f1624dd9a394be19ccf9d63e4de0a0558831ca3 (patch) | |
tree | 21ca6a6c0f51a294752e693bb883120ababb6062 /src/kexportdialog.h | |
parent | ff1242765ed5cce09ca185f874de5b05b08e109f (diff) | |
download | kpicosim-8f1624dd9a394be19ccf9d63e4de0a0558831ca3.tar.gz kpicosim-8f1624dd9a394be19ccf9d63e4de0a0558831ca3.zip |
TQt4 port kpicosim
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kpicosim@1238884 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 ; |