diff options
author | Michele Calgaro <[email protected]> | 2023-11-23 11:23:34 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-23 11:50:55 +0900 |
commit | d4e69bd209ceeb1889b8c57008bf5ae4627b6813 (patch) | |
tree | e61fbe6297ab27a6cdcf5373719ecd2357548f1d | |
parent | d2998fbc2b984de32712fde6280eff2643fb14ff (diff) | |
download | gwenview-d4e69bd209ceeb1889b8c57008bf5ae4627b6813.tar.gz gwenview-d4e69bd209ceeb1889b8c57008bf5ae4627b6813.zip |
Replaced various '#define' with actual strings - part 2
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 81b75405598b6827205a7e2a9d27d6a42b6a3e8a)
-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 |