diff options
Diffstat (limited to 'interfaces/khexedit')
-rw-r--r-- | interfaces/khexedit/byteseditinterface.h | 2 | ||||
-rw-r--r-- | interfaces/khexedit/charcolumninterface.h | 2 | ||||
-rw-r--r-- | interfaces/khexedit/clipboardinterface.h | 2 | ||||
-rw-r--r-- | interfaces/khexedit/valuecolumninterface.h | 2 | ||||
-rw-r--r-- | interfaces/khexedit/zoominterface.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/interfaces/khexedit/byteseditinterface.h b/interfaces/khexedit/byteseditinterface.h index a34e70e42..57d1dd6f3 100644 --- a/interfaces/khexedit/byteseditinterface.h +++ b/interfaces/khexedit/byteseditinterface.h @@ -159,7 +159,7 @@ inline BytesEditInterface *bytesEditInterface( T *t ) if( !t ) return 0; - return static_cast<BytesEditInterface*>( t->qt_cast("KHE::BytesEditInterface") ); + return ::tqqt_cast<KHE::BytesEditInterface*>( t ); } /** tries to create an instance of a hexedit widget for arrays of chars (char[]) diff --git a/interfaces/khexedit/charcolumninterface.h b/interfaces/khexedit/charcolumninterface.h index 4221de0c4..38e4ae29b 100644 --- a/interfaces/khexedit/charcolumninterface.h +++ b/interfaces/khexedit/charcolumninterface.h @@ -97,7 +97,7 @@ CharColumnInterface *charColumnInterface( T *t ) if( !t ) return 0; - return static_cast<CharColumnInterface*>( t->qt_cast("KHE::CharColumnInterface") ); + return ::tqqt_cast<KHE::CharColumnInterface*>( t ); } } diff --git a/interfaces/khexedit/clipboardinterface.h b/interfaces/khexedit/clipboardinterface.h index 6b5f4fab2..c63c5a88e 100644 --- a/interfaces/khexedit/clipboardinterface.h +++ b/interfaces/khexedit/clipboardinterface.h @@ -78,7 +78,7 @@ ClipboardInterface *clipboardInterface( T *t ) if( !t ) return 0; - return static_cast<ClipboardInterface*>( t->qt_cast("KHE::ClipboardInterface") ); + return ::tqqt_cast<KHE::ClipboardInterface*>( t ); } } diff --git a/interfaces/khexedit/valuecolumninterface.h b/interfaces/khexedit/valuecolumninterface.h index 7dafa7d42..78378f1d4 100644 --- a/interfaces/khexedit/valuecolumninterface.h +++ b/interfaces/khexedit/valuecolumninterface.h @@ -162,7 +162,7 @@ ValueColumnInterface *valueColumnInterface( T *t ) if( !t ) return 0; - return static_cast<ValueColumnInterface*>( t->qt_cast("KHE::ValueColumnInterface") ); + return ::tqqt_cast<KHE::ValueColumnInterface*>( t ); } } diff --git a/interfaces/khexedit/zoominterface.h b/interfaces/khexedit/zoominterface.h index 494fbfd86..9c6f0f677 100644 --- a/interfaces/khexedit/zoominterface.h +++ b/interfaces/khexedit/zoominterface.h @@ -71,7 +71,7 @@ ZoomInterface *zoomInterface( T *t ) if( !t ) return 0; - return static_cast<ZoomInterface*>( t->qt_cast("KHE::ZoomInterface") ); + return ::tqqt_cast<KHE::ZoomInterface*>( t ); } } |