summaryrefslogtreecommitdiffstats
path: root/ksystemlog/src/childLogLine.cpp
diff options
context:
space:
mode:
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() {