diff options
author | Michele Calgaro <[email protected]> | 2023-07-12 10:19:29 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-12 10:19:29 +0900 |
commit | 1f00d69db7629853a25425ae5f3ca06d480e5430 (patch) | |
tree | 477c79289980d0d6181eee20bb1174cf8f147f0f | |
parent | 53442b53d0961872a9414726dfd32122a15afa39 (diff) | |
download | tdebindings-1f00d69db7629853a25425ae5f3ca06d480e5430.tar.gz tdebindings-1f00d69db7629853a25425ae5f3ca06d480e5430.zip |
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | kjsembed/qtbindings/qcanvasitem_imp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kjsembed/qtbindings/qcanvasitem_imp.cpp b/kjsembed/qtbindings/qcanvasitem_imp.cpp index 278252eb..36105a92 100644 --- a/kjsembed/qtbindings/qcanvasitem_imp.cpp +++ b/kjsembed/qtbindings/qcanvasitem_imp.cpp @@ -163,7 +163,7 @@ TQCanvasItem *TQCanvasItemImp::toTQCanvasItem( KJS::Object &self ) if ( !op ) return 0; /* - if ( !op->inherits(TQCANVASITEM_OBJECT_NAME_STRING) ) { + if ( !op->inherits("TQCanvasItem") ) { kdDebug() << "Typename of opaque canvas item is " << op->typeName() << endl; // Check superclasses return 0; |