diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-01 18:06:35 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-01 22:22:14 +0900 |
commit | 08a957a2e9e2c3449007f2118da08af79505044f (patch) | |
tree | 41f3eab868d2397ae0e3e21e4415ad52e81fa530 | |
parent | 660ad7b0d4a4740acbfb6580eaca09b3707fd71a (diff) | |
download | tdelibs-08a957a2e9e2c3449007f2118da08af79505044f.tar.gz tdelibs-08a957a2e9e2c3449007f2118da08af79505044f.zip |
Replace tqt_mo_* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 34632650f1a323bdb5a0bbb0f504e3db70d87330)
-rw-r--r-- | dcop/dcopclient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dcop/dcopclient.cpp b/dcop/dcopclient.cpp index 52d9097c1..f5588ad3c 100644 --- a/dcop/dcopclient.cpp +++ b/dcop/dcopclient.cpp @@ -1512,7 +1512,7 @@ static bool receiveQtObject( const TQCString &objId, const TQCString &fun, const TQStrList lst = o->metaObject()->slotNames( true ); int i = 0; for ( TQPtrListIterator<char> it( lst ); it.current(); ++it ) { - if ( o->metaObject()->slot( i++, true )->tqt_mo_access != TQMetaData::Public ) + if ( o->metaObject()->slot( i++, true )->access != TQMetaData::Public ) continue; TQCString slot = it.current(); if ( slot.contains( "()" ) ) { |