summaryrefslogtreecommitdiffstats
path: root/src/tsthread
diff options
context:
space:
mode:
Diffstat (limited to 'src/tsthread')
-rw-r--r--src/tsthread/tsthread.cpp6
-rw-r--r--src/tsthread/tsthread.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/tsthread/tsthread.cpp b/src/tsthread/tsthread.cpp
index 5bbd566..6363f2e 100644
--- a/src/tsthread/tsthread.cpp
+++ b/src/tsthread/tsthread.cpp
@@ -45,10 +45,10 @@ class TSMainThread
virtual void run() { assert( false ); }
};
-TSThread::Helper::Helper( TSThread* tqparent )
- : thread( tqparent )
+TSThread::Helper::Helper( TSThread* parent )
+ : thread( parent )
{
- assert( tqparent );
+ assert( parent );
}
void TSThread::Helper::run()
diff --git a/src/tsthread/tsthread.h b/src/tsthread/tsthread.h
index 91b64e6..8468db8 100644
--- a/src/tsthread/tsthread.h
+++ b/src/tsthread/tsthread.h
@@ -176,7 +176,7 @@ class TSThread
: public TQThread
{
public:
- Helper( TSThread* tqparent );
+ Helper( TSThread* parent );
protected:
virtual void run();
private: