diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-21 01:31:08 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-21 01:31:08 +0000 |
commit | 04b9c54a5411490fe3e7a01e86a7a3fe45b72266 (patch) | |
tree | 536ef44d828ac6f791fdcc873ba6cd2af4c17e28 /interfaces/khexedit | |
parent | 84e5264c10e8ca5f9fab9bdcb41b4748891e39e8 (diff) | |
download | tdelibs-04b9c54a5411490fe3e7a01e86a7a3fe45b72266.tar.gz tdelibs-04b9c54a5411490fe3e7a01e86a7a3fe45b72266.zip |
Fix kdevelop FTBFS
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1228610 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'interfaces/khexedit')
-rw-r--r-- | interfaces/khexedit/byteseditinterface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interfaces/khexedit/byteseditinterface.h b/interfaces/khexedit/byteseditinterface.h index 57d1dd6f3..a9a8d4eca 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 ::tqqt_cast<KHE::BytesEditInterface*>( t ); + return static_cast<KHE::BytesEditInterface*>( t->qt_cast("KHE::BytesEditInterface") ); } /** tries to create an instance of a hexedit widget for arrays of chars (char[]) |