diff options
-rw-r--r-- | graphics/macgui/mactextwindow.cpp | 4 | ||||
-rw-r--r-- | graphics/macgui/mactextwindow.h | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/graphics/macgui/mactextwindow.cpp b/graphics/macgui/mactextwindow.cpp index 52785adeb6..4d4d5a2a31 100644 --- a/graphics/macgui/mactextwindow.cpp +++ b/graphics/macgui/mactextwindow.cpp @@ -69,10 +69,6 @@ MacTextWindow::MacTextWindow(MacWindowManager *wm, const MacFont *font, int fgco g_system->getTimerManager()->installTimerProc(&cursorTimerHandler, 200000, this, "textWindowCursor"); } -void MacTextWindow::drawText(ManagedSurface *g, int x, int y, int w, int h, int xoff, int yoff) { - _mactext->draw(g, x, y, w, h, xoff, yoff); -} - void MacTextWindow::appendText(Common::String str, const MacFont *macFont) { _mactext->appendText(str, macFont->getId(), macFont->getSize(), macFont->getSlant()); diff --git a/graphics/macgui/mactextwindow.h b/graphics/macgui/mactextwindow.h index 5ed507b07b..fecfeb57be 100644 --- a/graphics/macgui/mactextwindow.h +++ b/graphics/macgui/mactextwindow.h @@ -63,7 +63,6 @@ public: void setTextWindowFont(const MacFont *macFont); const MacFont *getTextWindowFont(); - void drawText(ManagedSurface *g, int x, int y, int w, int h, int xoff, int yoff); void appendText(Common::String str, const MacFont *macFont); void clearText(); |