summaryrefslogtreecommitdiffstats
path: root/lib/kofficeui/KoEditPath.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kofficeui/KoEditPath.h')
-rw-r--r--lib/kofficeui/KoEditPath.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/lib/kofficeui/KoEditPath.h b/lib/kofficeui/KoEditPath.h
index 6ec99333..0b56ccad 100644
--- a/lib/kofficeui/KoEditPath.h
+++ b/lib/kofficeui/KoEditPath.h
@@ -21,18 +21,19 @@
#define __KOEditPathDia__
#include <kdialogbase.h>
-#include <qstringlist.h>
+#include <tqstringlist.h>
#include <koffice_export.h>
class KEditListBox;
class KURLRequester;
-class QCheckBox;
+class TQCheckBox;
class KOFFICEUI_EXPORT KoEditPathDia : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- KoEditPathDia( const QString & _path, QWidget *parent, const char *name );
- QString newPath()const;
+ KoEditPathDia( const TQString & _path, TQWidget *tqparent, const char *name );
+ TQString newPath()const;
private:
KEditListBox *m_listpath;
@@ -42,14 +43,15 @@ private:
class KOFFICEUI_EXPORT KoChangePathDia : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- KoChangePathDia( const QString & _path, QWidget *parent, const char *name );
- QString newPath()const;
+ KoChangePathDia( const TQString & _path, TQWidget *tqparent, const char *name );
+ TQString newPath()const;
private slots:
void slotChangeDefaultValue( bool );
private:
KURLRequester *m_urlReq;
- QCheckBox *m_defaultPath;
+ TQCheckBox *m_defaultPath;
};
#endif