summaryrefslogtreecommitdiffstats
path: root/src/fetcherconfigdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fetcherconfigdialog.h')
-rw-r--r--src/fetcherconfigdialog.h27
1 files changed, 14 insertions, 13 deletions
diff --git a/src/fetcherconfigdialog.h b/src/fetcherconfigdialog.h
index 6384102..5150c29 100644
--- a/src/fetcherconfigdialog.h
+++ b/src/fetcherconfigdialog.h
@@ -19,11 +19,11 @@
#include <kdialogbase.h>
-#include <qintdict.h>
+#include <tqintdict.h>
class KLineEdit;
-class QCheckBox;
-class QWidgetStack;
+class TQCheckBox;
+class TQWidgetStack;
namespace Tellico {
namespace GUI {
@@ -35,21 +35,22 @@ namespace Tellico {
*/
class FetcherConfigDialog : public KDialogBase {
Q_OBJECT
+ TQ_OBJECT
public:
- FetcherConfigDialog(QWidget* parent);
- FetcherConfigDialog(const QString& sourceName, Fetch::Type type, bool updateOverwrite,
- Fetch::ConfigWidget* configWidget, QWidget* parent);
+ FetcherConfigDialog(TQWidget* tqparent);
+ FetcherConfigDialog(const TQString& sourceName, Fetch::Type type, bool updateOverwrite,
+ Fetch::ConfigWidget* configWidget, TQWidget* tqparent);
- QString sourceName() const;
+ TQString sourceName() const;
Fetch::Type sourceType() const;
bool updateOverwrite() const;
Fetch::ConfigWidget* configWidget() const;
private slots:
void slotNewSourceSelected(int idx);
- void slotNameChanged(const QString& name);
- void slotPossibleNewName(const QString& name);
+ void slotNameChanged(const TQString& name);
+ void slotPossibleNewName(const TQString& name);
private:
void init(Fetch::Type type);
@@ -57,12 +58,12 @@ private:
bool m_newSource : 1;
bool m_useDefaultName : 1;
Fetch::ConfigWidget* m_configWidget;
- QLabel* m_iconLabel;
+ TQLabel* m_iconLabel;
KLineEdit* m_nameEdit;
GUI::ComboBox* m_typeCombo;
- QCheckBox* m_cbOverwrite;
- QWidgetStack* m_stack;
- QIntDict<Fetch::ConfigWidget> m_configWidgets;
+ TQCheckBox* m_cbOverwrite;
+ TQWidgetStack* m_stack;
+ TQIntDict<Fetch::ConfigWidget> m_configWidgets;
};
} // end namespace