diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:36:09 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 19:44:38 +0900 |
commit | 8eb500c4e81229a9853e2f9bac4f39450083f3d7 (patch) | |
tree | 3c700b8550635d12c771ff0a1cb310a40a88e4b7 /dcop/dcopidlng | |
parent | a91e58bb975c56acdab25227a8b1c1c842dbdd34 (diff) | |
download | tdelibs-8eb500c4e81229a9853e2f9bac4f39450083f3d7.tar.gz tdelibs-8eb500c4e81229a9853e2f9bac4f39450083f3d7.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'dcop/dcopidlng')
-rw-r--r-- | dcop/dcopidlng/kalyptus | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/dcop/dcopidlng/kalyptus b/dcop/dcopidlng/kalyptus index 38b38a013..312a62eb1 100644 --- a/dcop/dcopidlng/kalyptus +++ b/dcop/dcopidlng/kalyptus @@ -113,7 +113,6 @@ $allowed_k_dcop_accesors_re = join("|", @allowed_k_dcop_accesors); TQ_DISABLE_COPY => 'TQ_DISABLE_COPY', Q_WS_QWS => 'undef', Q_WS_MAC => 'undef', - Q_OBJECT => <<'CODE', TQ_OBJECT => <<'CODE', public: virtual QMetaObject *metaObject() const; @@ -373,7 +372,7 @@ sub readSourceLine =head2 readCxxLine Reads a C++ source line, skipping comments, blank lines, - preprocessor tokens and the Q_OBJECT/TQ_OBJECT macros + preprocessor tokens and the TQ_OBJECT macros =cut @@ -401,10 +400,6 @@ LOOP: } } - if ( $p =~ /^\s*Q_OBJECT/ ) { - push @inputqueue, @codeqobject; - next; - } if ( $p =~ /^\s*TQ_OBJECT/ ) { push @inputqueue, @codeqobject; next; @@ -423,7 +418,7 @@ LOOP: } next if ( $p =~ /^\s*$/s ); # blank lines -# || $p =~ /^\s*Q_OBJECT/ # QObject macro +# || $p =~ /^\s*TQ_OBJECT/ # QObject macro # ); # |