summaryrefslogtreecommitdiffstats
path: root/kdelirc/kdelirc/profileserver.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdelirc/kdelirc/profileserver.h')
-rw-r--r--kdelirc/kdelirc/profileserver.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kdelirc/kdelirc/profileserver.h b/kdelirc/kdelirc/profileserver.h
index f049ad4..0d9bc59 100644
--- a/kdelirc/kdelirc/profileserver.h
+++ b/kdelirc/kdelirc/profileserver.h
@@ -36,7 +36,7 @@ class ProfileActionArgument
TQString theComment, theType;
Range theRange;
TQString theDefault; // should be TQVariant?
- const ProfileAction *tqparent;
+ const ProfileAction *parent;
friend class Profile;
public:
@@ -49,15 +49,15 @@ public:
const Range &range() const { return theRange; }
void setRange(const Range &a) { theRange = a; }
- const ProfileAction *action() const { return tqparent; }
- void setAction(const ProfileAction *a) { tqparent = a; }
+ const ProfileAction *action() const { return parent; }
+ void setAction(const ProfileAction *a) { parent = a; }
};
class ProfileAction
{
TQString theObjId, thePrototype, theName, theComment, theClass;
float theMultiplier;
- const Profile *tqparent;
+ const Profile *parent;
bool theRepeat, theAutoStart;
TQValueList<ProfileActionArgument> theArguments;
@@ -81,8 +81,8 @@ public:
void setAutoStart(bool a) { theAutoStart = a; }
const TQValueList<ProfileActionArgument> &arguments() const { return theArguments; }
- const Profile *profile() const { return tqparent; }
- void setProfile(const Profile *a) { tqparent = a; }
+ const Profile *profile() const { return parent; }
+ void setProfile(const Profile *a) { parent = a; }
};
class Profile : public TQXmlDefaultHandler