diff options
Diffstat (limited to 'src/exportdialog.h')
-rw-r--r-- | src/exportdialog.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/exportdialog.h b/src/exportdialog.h index 2e68ca3..19a6cbe 100644 --- a/src/exportdialog.h +++ b/src/exportdialog.h @@ -14,8 +14,8 @@ #ifndef EXPORTDIALOG_H #define EXPORTDIALOG_H -class QCheckBox; -class QRadioButton; +class TQCheckBox; +class TQRadioButton; #include "translators/translators.h" #include "datavectors.h" @@ -33,12 +33,13 @@ namespace Tellico { */ class ExportDialog : public KDialogBase { Q_OBJECT + TQ_OBJECT public: - ExportDialog(Export::Format format, Data::CollPtr coll, QWidget* parent, const char* name); + ExportDialog(Export::Format format, Data::CollPtr coll, TQWidget* tqparent, const char* name); ~ExportDialog(); - QString fileFilter(); + TQString fileFilter(); bool exportURL(const KURL& url=KURL()) const; static Export::Target exportTarget(Export::Format format); @@ -55,10 +56,10 @@ private: Export::Format m_format; Data::CollPtr m_coll; Export::Exporter* m_exporter; - QCheckBox* m_formatFields; - QCheckBox* m_exportSelected; - QRadioButton* m_encodeUTF8; - QRadioButton* m_encodeLocale; + TQCheckBox* m_formatFields; + TQCheckBox* m_exportSelected; + TQRadioButton* m_encodeUTF8; + TQRadioButton* m_encodeLocale; }; } // end namespace |