By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2402
Collapse All | Expand All

(-)a/bibletime/backend/cswordbackend.cpp (-1 / +1 lines)
Lines 251-257 const bool CSwordBackend::shutdownModules() { Link Here
251
251
252
/** Returns true if the given option is enabled. */
252
/** Returns true if the given option is enabled. */
253
const bool CSwordBackend::isOptionEnabled( const CSwordModuleInfo::FilterTypes type) {
253
const bool CSwordBackend::isOptionEnabled( const CSwordModuleInfo::FilterTypes type) {
254
	return (getGlobalOption( optionName(type).latin1() ) == "On");
254
	return (strcmp(getGlobalOption( optionName(type).latin1() ), "On"));
255
}
255
}
256
256
257
/** Sets the given options enabled or disabled depending on the second parameter. */
257
/** Sets the given options enabled or disabled depending on the second parameter. */
(-)a/bibletime/frontend/cdragdropmgr.cpp (-1 / +1 lines)
Lines 36-42 bool CDragDropMgr::BTDrag::canDecode( const TQMimeSource * mime ) { Link Here
36
};
36
};
37
37
38
bool CDragDropMgr::BTDrag::provides( const char* type ) const {
38
bool CDragDropMgr::BTDrag::provides( const char* type ) const {
39
	return (type == "BibleTime/DND"); //return only true if the type is BibleTime/DND
39
	return (strcmp(type, "BibleTime/DND")); //return only true if the type is BibleTime/DND
40
};
40
};
41
41
42
const char* CDragDropMgr::BTDrag::format( int i ) const {
42
const char* CDragDropMgr::BTDrag::format( int i ) const {

Return to bug 2402