GRAPHICS: MACGUI: Remove redundant method from MacTextWindow
This commit is contained in:
parent
8319e4093f
commit
a5c99c99f5
2 changed files with 0 additions and 7 deletions
|
@ -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);
|
_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) {
|
void MacTextWindow::appendText(Common::String str, const MacFont *macFont) {
|
||||||
_mactext->appendText(str, macFont->getId(), macFont->getSize(), macFont->getSlant());
|
_mactext->appendText(str, macFont->getId(), macFont->getSize(), macFont->getSlant());
|
||||||
|
|
||||||
|
|
|
@ -64,7 +64,6 @@ public:
|
||||||
const MacFont *getTextWindowFont();
|
const MacFont *getTextWindowFont();
|
||||||
|
|
||||||
void drawText(ManagedSurface *g, int x, int y, int w, int h, int xoff, int yoff);
|
void drawText(ManagedSurface *g, int x, int y, int w, int h, int xoff, int yoff);
|
||||||
void appendText(Common::String str, int fontId = kMacFontChicago, int fontSize = 12, int fontSlant = kMacFontRegular);
|
|
||||||
void appendText(Common::String str, const MacFont *macFont);
|
void appendText(Common::String str, const MacFont *macFont);
|
||||||
void clearText();
|
void clearText();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue