BADA: Strip trailing whitespace

This commit is contained in:
Sven Hesse 2011-08-22 09:46:30 +02:00
parent b406ba5884
commit 58ab4cdab7
15 changed files with 93 additions and 93 deletions

View file

@ -96,7 +96,7 @@ bool BadaSaveFileManager::removeSavefile(const Common::String &filename) {
return true;
case E_ILLEGAL_ACCESS:
setError(Common::kWritePermissionDenied, "Search or write permission denied: " +
setError(Common::kWritePermissionDenied, "Search or write permission denied: " +
file.getName());
break;
@ -206,9 +206,9 @@ int BadaEventManager::shouldQuit() const {
//
// BadaSystem
//
BadaSystem::BadaSystem(BadaAppForm *appForm) :
BadaSystem::BadaSystem(BadaAppForm *appForm) :
_appForm(appForm),
_audioThread(0),
_audioThread(0),
_epoch(0) {
}
@ -251,7 +251,7 @@ result BadaSystem::initModules() {
}
// depends on _graphicsManager when ENABLE_VKEYBD enabled
_eventManager = new BadaEventManager(this);
_eventManager = new BadaEventManager(this);
if (!_eventManager) {
return E_OUT_OF_MEMORY;
}