diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-23 11:23:34 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-23 11:23:34 +0900 |
commit | 81b75405598b6827205a7e2a9d27d6a42b6a3e8a (patch) | |
tree | b9774e40c8b5bd8803271e048a0853f2aab0228b /src | |
parent | 9819dffc57bc205b261e702018579949c5c2f73b (diff) | |
download | gwenview-81b75405598b6827205a7e2a9d27d6a42b6a3e8a.tar.gz gwenview-81b75405598b6827205a7e2a9d27d6a42b6a3e8a.zip |
Replaced various '#define' with actual strings - part 2
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src')
-rw-r--r-- | src/tsthread/tsthread.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tsthread/tsthread.h b/src/tsthread/tsthread.h index 56086d4..2a53d7b 100644 --- a/src/tsthread/tsthread.h +++ b/src/tsthread/tsthread.h @@ -293,43 +293,43 @@ TSThread* TSThread::mainThread() inline void TSThread::setSignalData( TQUObject* o, int i ) { - static_TQUType_int.set( o, i ); + static_QUType_int.set( o, i ); } inline void TSThread::setSignalData( TQUObject* o, const TQImage& i ) { - static_TQUType_varptr.set( o, &i ); + static_QUType_varptr.set( o, &i ); } inline void TSThread::setSignalData( TQUObject* o, const TQString& s ) { - static_TQUType_TQString.set( o, s ); + static_QUType_TQString.set( o, s ); } inline void TSThread::setSignalData( TQUObject* o, bool b ) { - static_TQUType_bool.set( o, b ); + static_QUType_bool.set( o, b ); } inline void TSThread::setSignalData( TQUObject* o, const TQColor& c ) { - static_TQUType_varptr.set( o, &c ); + static_QUType_varptr.set( o, &c ); } inline void TSThread::setSignalData( TQUObject* o, const char* s ) { - static_TQUType_charstar.set( o, s ); + static_QUType_charstar.set( o, s ); } inline void TSThread::setSignalData( TQUObject* o, const TQSize& s ) { - static_TQUType_varptr.set( o, &s ); + static_QUType_varptr.set( o, &s ); } inline |