summaryrefslogtreecommitdiffstats
path: root/krename/profiledlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'krename/profiledlg.h')
-rw-r--r--krename/profiledlg.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/krename/profiledlg.h b/krename/profiledlg.h
index a9a29c3..84280ed 100644
--- a/krename/profiledlg.h
+++ b/krename/profiledlg.h
@@ -23,25 +23,25 @@
class KListBox;
class KPushButton;
class KRenameImpl;
-class QCheckBox;
+class TQCheckBox;
class ProfileManager {
public:
ProfileManager( KRenameImpl* krename );
static void loadDefaultProfile( KRenameImpl* krename );
- static void loadProfile( const QString & name, KRenameImpl* krename );
+ static void loadProfile( const TQString & name, KRenameImpl* krename );
static bool hasDefaultProfile();
protected:
- const QString getProfilePath( const QString & name );
- const QString readProfilePath( const QString & name );
+ const TQString getProfilePath( const TQString & name );
+ const TQString readProfilePath( const TQString & name );
- const QString listToString( QValueList<int> & list );
- const QValueList<int> stringToList( const QString & );
+ const TQString listToString( TQValueList<int> & list );
+ const TQValueList<int> stringToList( const TQString & );
- void writeXML( const QString & name );
- bool loadXML( const QString & path );
+ void writeXML( const TQString & name );
+ bool loadXML( const TQString & path );
protected:
KRenameImpl* m_krename;
@@ -54,9 +54,10 @@ class ProfileManager {
class ProfileDlg : public KDialogBase, public ProfileManager
{
Q_OBJECT
+ TQ_OBJECT
public:
- ProfileDlg(KRenameImpl* krename, QWidget *parent = 0, const char *name = 0);
+ ProfileDlg(KRenameImpl* krename, TQWidget *tqparent = 0, const char *name = 0);
~ProfileDlg();
private slots:
@@ -70,7 +71,7 @@ class ProfileDlg : public KDialogBase, public ProfileManager
private:
KListBox* profiles;
- QCheckBox* checkDefault;
+ TQCheckBox* checkDefault;
KPushButton* createProfile;
KPushButton* loadProfile;
KPushButton* deleteProfile;