diff options
Diffstat (limited to 'src/importdialog.h')
-rw-r--r-- | src/importdialog.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/importdialog.h b/src/importdialog.h index 3802436..70d187e 100644 --- a/src/importdialog.h +++ b/src/importdialog.h @@ -20,14 +20,14 @@ #include <kdialogbase.h> #include <kurl.h> -class QRadioButton; -class QCheckBox; -class QShowEvent; +class TQRadioButton; +class TQCheckBox; +class TQShowEvent; namespace Tellico { namespace Import { class Importer; - typedef QMap<Import::Format, QString> FormatMap; + typedef TQMap<Import::Format, TQString> FormatMap; } /** @@ -35,18 +35,19 @@ namespace Tellico { */ class ImportDialog : public KDialogBase { Q_OBJECT + TQ_OBJECT public: - ImportDialog(Import::Format format, const KURL::List& urls, QWidget* parent, const char* name); + ImportDialog(Import::Format format, const KURL::List& urls, TQWidget* tqparent, const char* name); ~ImportDialog(); Data::CollPtr collection(); - QString statusMessage() const; + TQString statusMessage() const; Import::Action action() const; - static QString fileFilter(Import::Format format); + static TQString fileFilter(Import::Format format); static Import::Target importTarget(Import::Format format); - static QString startDir(Import::Format format); + static TQString startDir(Import::Format format); static Import::FormatMap formatMap(); static bool formatImportsText(Import::Format format); @@ -62,9 +63,9 @@ private slots: private: Data::CollPtr m_coll; Import::Importer* m_importer; - QRadioButton* m_radioAppend; - QRadioButton* m_radioReplace; - QRadioButton* m_radioMerge; + TQRadioButton* m_radioAppend; + TQRadioButton* m_radioReplace; + TQRadioButton* m_radioMerge; }; } // end namespace |