diff options
author | Michele Calgaro <[email protected]> | 2023-12-21 11:50:27 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-21 19:10:24 +0900 |
commit | 3ec2e5d1452640f61934f62bb4d5820c09812710 (patch) | |
tree | 850cb1382cc875ec62d4ae1811247f5fddc0d69b /kspy/spy.cpp | |
parent | e116e9630fefaa0aa8d999e8eb34949ca8fa0724 (diff) | |
download | tdesdk-3ec2e5d1452640f61934f62bb4d5820c09812710.tar.gz tdesdk-3ec2e5d1452640f61934f62bb4d5820c09812710.zip |
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kspy/spy.cpp')
-rw-r--r-- | kspy/spy.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kspy/spy.cpp b/kspy/spy.cpp index 24ebaf4f..6911c269 100644 --- a/kspy/spy.cpp +++ b/kspy/spy.cpp @@ -92,10 +92,10 @@ Spy::~Spy() void Spy::setTarget( TQWidget *target ) { mTarget = target; - mPropsView->buildList( TQT_TQOBJECT(mTarget) ); - mSigSlotView->buildList( TQT_TQOBJECT(mTarget) ); - mReceiversView->buildList( TQT_TQOBJECT(mTarget) ); - mClassInfoView->buildList( TQT_TQOBJECT(mTarget) ); + mPropsView->buildList( mTarget ); + mSigSlotView->buildList( mTarget ); + mReceiversView->buildList( mTarget ); + mClassInfoView->buildList( mTarget ); } void Spy::keyPressEvent( TQKeyEvent *event ) |