GRAPHICS: MACGUI: Remove redundant method from MacTextWindow

This commit is contained in:
Eugene Sandulenko 2017-07-31 20:51:02 +02:00
parent 8319e4093f
commit a5c99c99f5
2 changed files with 0 additions and 7 deletions

View file

@ -71,12 +71,6 @@ void MacTextWindow::drawText(ManagedSurface *g, int x, int y, int w, int h, int
_mactext->draw(g, x, y, w, h, xoff, yoff);
}
void MacTextWindow::appendText(Common::String str, int id, int size, int slant) {
_mactext->appendText(str, id, size, slant);
updateCursorPos();
}
void MacTextWindow::appendText(Common::String str, const MacFont *macFont) {
_mactext->appendText(str, macFont->getId(), macFont->getSize(), macFont->getSlant());