diff options
Diffstat (limited to 'interfaces/khexedit/clipboardinterface.h')
-rw-r--r-- | interfaces/khexedit/clipboardinterface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/interfaces/khexedit/clipboardinterface.h b/interfaces/khexedit/clipboardinterface.h index 0e106aa32..6b5f4fab2 100644 --- a/interfaces/khexedit/clipboardinterface.h +++ b/interfaces/khexedit/clipboardinterface.h @@ -34,8 +34,8 @@ namespace KHE * KHE::ClipboardInterface *Clipboard = KHE::clipboardInterface( BytesEditWidget ); * if( Clipboard ) * { - * // Yes, use BytesEditWidget, not Clipboard, because that's the TQObject, indeed hacky... - * connect( BytesEditWidget, TQT_SIGNAL(copyAvailable(bool)), this, TQT_SLOT(offerCopy(bool)) ); + * � // Yes, use BytesEditWidget, not Clipboard, because that's the TQObject, indeed hacky... + * � connect( BytesEditWidget, TQT_SIGNAL(copyAvailable(bool)), this, TQT_SLOT(offerCopy(bool)) ); * } * \endcode * @@ -78,7 +78,7 @@ ClipboardInterface *clipboardInterface( T *t ) if( !t ) return 0; - return static_cast<ClipboardInterface*>( t->tqqt_cast("KHE::ClipboardInterface") ); + return static_cast<ClipboardInterface*>( t->qt_cast("KHE::ClipboardInterface") ); } } |