summaryrefslogtreecommitdiffstats
path: root/kiosktool/profilePropsPage.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-10-15 09:34:36 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-10-15 09:34:36 +0000
commit586a5f786f9af3ddccdb6eba16fd529a5e88ed4c (patch)
treea889bda9cdb4e705ef7bf50ea2a0a8e53b33a3bc /kiosktool/profilePropsPage.h
parent281b2113b209bd51bd923ad8f289f4041ff03a0f (diff)
downloadkiosktool-586a5f786f9af3ddccdb6eba16fd529a5e88ed4c.tar.gz
kiosktool-586a5f786f9af3ddccdb6eba16fd529a5e88ed4c.zip
Raw TQt conversion of kiosktool
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kiosktool@1258970 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kiosktool/profilePropsPage.h')
-rw-r--r--kiosktool/profilePropsPage.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/kiosktool/profilePropsPage.h b/kiosktool/profilePropsPage.h
index e846020..c165884 100644
--- a/kiosktool/profilePropsPage.h
+++ b/kiosktool/profilePropsPage.h
@@ -25,8 +25,9 @@
class ProfilePropsPage : public ProfilePropsPageUI, public PageWidget
{
Q_OBJECT
+ TQ_OBJECT
public:
- ProfilePropsPage(QWidget *parent, const QString &profile);
+ ProfilePropsPage(TQWidget *parent, const TQString &profile);
~ProfilePropsPage();
virtual void load();
@@ -34,18 +35,18 @@ public:
virtual void setFocus();
- virtual QString subCaption();
+ virtual TQString subCaption();
- QString profile() { return m_profile; }
+ TQString profile() { return m_profile; }
protected slots:
void slotProfileNameChanged();
private:
- QString m_profile;
+ TQString m_profile;
bool m_fixedProfileDir;
- QString m_origProfile;
- QString m_origInstallDir;
+ TQString m_origProfile;
+ TQString m_origInstallDir;
};
#endif