diff options
Diffstat (limited to 'src/profileengine/lib')
-rw-r--r-- | src/profileengine/lib/profile.cpp | 8 | ||||
-rw-r--r-- | src/profileengine/lib/profile.h | 6 | ||||
-rw-r--r-- | src/profileengine/lib/profileengine.h | 16 |
3 files changed, 15 insertions, 15 deletions
diff --git a/src/profileengine/lib/profile.cpp b/src/profileengine/lib/profile.cpp index a5ad5803..02fe1216 100644 --- a/src/profileengine/lib/profile.cpp +++ b/src/profileengine/lib/profile.cpp @@ -26,8 +26,8 @@ #include <kconfig.h> #include <kio/netaccess.h> -Profile::Profile(Profile *tqparent, const TQString &name) - :m_parent(tqparent), m_name(name) +Profile::Profile(Profile *parent, const TQString &name) + :m_parent(parent), m_name(name) { if (m_parent) m_parent->addChildProfile(this); @@ -49,8 +49,8 @@ Profile::Profile(Profile *tqparent, const TQString &name) m_explicitDisable = config.readListEntry("List"); } -Profile::Profile(Profile *tqparent, const TQString &name, const TQString &genericName, const TQString &description) - :m_parent(tqparent), m_name(name), m_genericName(genericName), m_description(description) +Profile::Profile(Profile *parent, const TQString &name, const TQString &genericName, const TQString &description) + :m_parent(parent), m_name(name), m_genericName(genericName), m_description(description) { if (m_parent) m_parent->addChildProfile(this); diff --git a/src/profileengine/lib/profile.h b/src/profileengine/lib/profile.h index 30e00517..c6829245 100644 --- a/src/profileengine/lib/profile.h +++ b/src/profileengine/lib/profile.h @@ -45,12 +45,12 @@ public: ExplicitDisable /**<A list of explicitly disabled plugins (names).*/ }; - Profile(Profile *tqparent, const TQString &name); - Profile(Profile *tqparent, const TQString &name, const TQString &genericName, const TQString &description); + Profile(Profile *parent, const TQString &name); + Profile(Profile *parent, const TQString &name, const TQString &genericName, const TQString &description); ~Profile(); TQValueList<Profile*> tqchildren() const { return m_tqchildren; } - Profile *tqparent() const { return m_parent; } + Profile *parent() const { return m_parent; } void save(); bool remove(); diff --git a/src/profileengine/lib/profileengine.h b/src/profileengine/lib/profileengine.h index 9184df62..90908afe 100644 --- a/src/profileengine/lib/profileengine.h +++ b/src/profileengine/lib/profileengine.h @@ -189,7 +189,7 @@ public: but the operation in this case returns a result of type defined by "Result" template parameter. - When iterating the tree, the result of operation applied to the tqparent profile + When iterating the tree, the result of operation applied to the parent profile is passed as @p result parameter to the recursive call for child profiles. For example, this function can be used to build another hierarcy of profiles @@ -199,24 +199,24 @@ public: @code class ProfileListBuilding { public: - ProfileItem * operator() (ProfileItem *tqparent, Profile *profile) + ProfileItem * operator() (ProfileItem *parent, Profile *profile) { - tqparent->setOpen(true); - return new ProfileItem(tqparent, profile); + parent->setOpen(true); + return new ProfileItem(parent, profile); } }; class ProfileItem: public KListViewItem { public: - ProfileItem(KListView *tqparent, Profile *profile) - :KListViewItem(tqparent), m_profile(profile) + ProfileItem(KListView *parent, Profile *profile) + :KListViewItem(parent), m_profile(profile) { setText(0, profile->genericName()); setText(1, profile->description()); } - ProfileItem(KListViewItem *tqparent, Profile *profile) - : KListViewItem(tqparent), m_profile(profile) + ProfileItem(KListViewItem *parent, Profile *profile) + : KListViewItem(parent), m_profile(profile) { setText(0, profile->genericName()); setText(1, profile->description()); |