diff options
Diffstat (limited to 'bibletime/frontend/cdragdropmgr.cpp')
-rw-r--r-- | bibletime/frontend/cdragdropmgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bibletime/frontend/cdragdropmgr.cpp b/bibletime/frontend/cdragdropmgr.cpp index 52d012f..428644f 100644 --- a/bibletime/frontend/cdragdropmgr.cpp +++ b/bibletime/frontend/cdragdropmgr.cpp @@ -36,7 +36,7 @@ bool CDragDropMgr::BTDrag::canDecode( const TQMimeSource * mime ) { }; bool CDragDropMgr::BTDrag::provides( const char* type ) const { - return (type == "BibleTime/DND"); //return only true if the type is BibleTime/DND + return (strcmp(type, "BibleTime/DND") == 0); //return only true if the type is BibleTime/DND }; const char* CDragDropMgr::BTDrag::format( int i ) const { |