summaryrefslogtreecommitdiffstats
path: root/ksystemlog/src/childLogLine.cpp
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
commit2b7e8d86a69ef89a9e1f96ca0c1691428c066a4e (patch)
tree96c0ef16123095f86ad900091e2c7cff3870c21e /ksystemlog/src/childLogLine.cpp
parent3021c04cf6aec08eb598251248da3e1d97d87fb2 (diff)
downloadksystemlog-2b7e8d86a69ef89a9e1f96ca0c1691428c066a4e.tar.gz
ksystemlog-2b7e8d86a69ef89a9e1f96ca0c1691428c066a4e.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ksystemlog@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksystemlog/src/childLogLine.cpp')
-rw-r--r--ksystemlog/src/childLogLine.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ksystemlog/src/childLogLine.cpp b/ksystemlog/src/childLogLine.cpp
index 420cd17..1a23c75 100644
--- a/ksystemlog/src/childLogLine.cpp
+++ b/ksystemlog/src/childLogLine.cpp
@@ -24,7 +24,7 @@
ChildLogLine::ChildLogLine(TQDate& date, TQTime& time, TQStringList& list, TQString& file, LogLevel* level, int type) :
LogLine(date, time, list, file, level, type),
- tqparent(NULL) {
+ parent(NULL) {
}
@@ -33,11 +33,11 @@ ChildLogLine::~ChildLogLine() {
}
void ChildLogLine::setParent(ParentLogLine* line) {
- tqparent=line;
+ parent=line;
}
ParentLogLine* ChildLogLine::getParent() {
- return(tqparent);
+ return(parent);
}
bool ChildLogLine::isChildLogLine() {