summaryrefslogtreecommitdiffstats
path: root/kplato/kptcalendar.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit04766b207afba7961d4d802313e426f5a2fbef63 (patch)
treec888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /kplato/kptcalendar.h
parentb6edfe41c9395f2e20784cbf0e630af6426950a3 (diff)
downloadkoffice-04766b207afba7961d4d802313e426f5a2fbef63.tar.gz
koffice-04766b207afba7961d4d802313e426f5a2fbef63.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kplato/kptcalendar.h')
-rw-r--r--kplato/kptcalendar.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kplato/kptcalendar.h b/kplato/kptcalendar.h
index 6e35622a..09c3980c 100644
--- a/kplato/kptcalendar.h
+++ b/kplato/kptcalendar.h
@@ -187,7 +187,7 @@ public:
/**
* Calendar defines the working and nonworking days and hours.
* A day can have the three states None (Undefined), NonWorking, or Working.
- * A calendar can have a tqparent calendar that defines the days that are
+ * A calendar can have a parent calendar that defines the days that are
* undefined in this calendar. If a day is still undefined, it defaults
* to Nonworking.
* A Working day has one or more work intervals to define the work hours.
@@ -205,15 +205,15 @@ class Calendar {
public:
Calendar();
- Calendar(TQString name, Calendar *tqparent=0);
+ Calendar(TQString name, Calendar *parent=0);
Calendar(Calendar *calendar);
~Calendar();
TQString name() const { return m_name; }
void setName(TQString name) { m_name = name; }
- Calendar *tqparent() const { return m_parent; }
- void setParent(Calendar *tqparent) { m_parent = tqparent; }
+ Calendar *parent() const { return m_parent; }
+ void setParent(Calendar *parent) { m_parent = parent; }
Project *project() const { return m_project; }
void setProject(Project *project);