Merge branch 'master' of ssh://git.code.sf.net/p/kiwix/kiwix

This commit is contained in:
Emmanuel Engelhart 2015-07-23 17:46:19 +02:00
commit e6e500007c

View File

@ -231,7 +231,6 @@ bool ContentManager::ListBooks(string &mode, string &sortBy, unsigned int maxSiz
return this->manager.listBooks(listMode, listSortBy, maxSize, language.c_str(), publisher.c_str(), search.c_str());
} catch (exception &e) {
cerr << e.what() << endl;
return false;
}
return false;
}
@ -258,7 +257,6 @@ bool ContentManager::SetBookIndex(string &id, string &path, string &indexType) {
return this->manager.setBookIndex(id.c_str(), path.c_str(), iType);
} catch (exception &e) {
cerr << e.what() << endl;
return false;
}
return false;
@ -269,7 +267,6 @@ bool ContentManager::SetBookPath(string &id, string &path) {
return this->manager.setBookPath(id.c_str(), path.c_str());
} catch (exception &e) {
cerr << e.what() << endl;
return false;
}
return false;
}