diff options
author | Max Horn | 2008-11-12 14:30:16 +0000 |
---|---|---|
committer | Max Horn | 2008-11-12 14:30:16 +0000 |
commit | c0f82d351894df16e23690b4361e66bed0fb6f84 (patch) | |
tree | f6ddb6d08e8dbe0637a5e5dcfb13d4a4fa5c21c0 /graphics/font.cpp | |
parent | 144be21bed1001c4a72739ef7656908cbf71e909 (diff) | |
download | scummvm-rg350-c0f82d351894df16e23690b4361e66bed0fb6f84.tar.gz scummvm-rg350-c0f82d351894df16e23690b4361e66bed0fb6f84.tar.bz2 scummvm-rg350-c0f82d351894df16e23690b4361e66bed0fb6f84.zip |
Renamed Graphics::TextAlignment -> Graphics::TextAlign and merged it with GUI::ThemeEngine::TextAlignVertical
svn-id: r35023
Diffstat (limited to 'graphics/font.cpp')
-rw-r--r-- | graphics/font.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/font.cpp b/graphics/font.cpp index 3680ad2eb8..bc5353c9c6 100644 --- a/graphics/font.cpp +++ b/graphics/font.cpp @@ -772,7 +772,7 @@ int Font::getStringWidth(const Common::String &str) const { return space; } -void Font::drawString(Surface *dst, const Common::String &s, int x, int y, int w, uint32 color, TextAlignment align, int deltax, bool useEllipsis) const { +void Font::drawString(Surface *dst, const Common::String &s, int x, int y, int w, uint32 color, TextAlign align, int deltax, bool useEllipsis) const { assert(dst != 0); const int leftX = x, rightX = x + w; uint i; |