BADA: Fixup indentation using tabs in lieu of space chars

This commit is contained in:
Chris Warren-Smith 2011-08-19 20:13:37 +10:00
parent 68f2ec53f7
commit 773f61253c

View file

@ -83,20 +83,20 @@ bool FontManager::setFont(FontUsage usage, const Font *font) {
switch (usage) { switch (usage) {
case kConsoleFont: case kConsoleFont:
delete g_consolefont; delete g_consolefont;
g_consolefont = (const BdfFont *)font; g_consolefont = (const BdfFont *)font;
break; break;
case kGUIFont: case kGUIFont:
delete g_sysfont; delete g_sysfont;
g_sysfont = (const BdfFont *)font; g_sysfont = (const BdfFont *)font;
break; break;
case kBigGUIFont: case kBigGUIFont:
delete g_sysfont_big; delete g_sysfont_big;
g_sysfont_big = (const BdfFont *)font; g_sysfont_big = (const BdfFont *)font;
break; break;
default: default:
return false; return false;
} }
return true; return true;
} }
void FontManager::removeFontName(const Common::String &name) { void FontManager::removeFontName(const Common::String &name) {