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 /engines/scumm | |
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 'engines/scumm')
-rw-r--r-- | engines/scumm/dialogs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/dialogs.cpp b/engines/scumm/dialogs.cpp index 1cb4e8a41d..42020dd4dc 100644 --- a/engines/scumm/dialogs.cpp +++ b/engines/scumm/dialogs.cpp @@ -62,8 +62,8 @@ using GUI::CommandSender; using GUI::StaticTextWidget; using GUI::kCloseCmd; -using GUI::kTextAlignCenter; -using GUI::kTextAlignLeft; +using Graphics::kTextAlignCenter; +using Graphics::kTextAlignLeft; using GUI::WIDGET_ENABLED; typedef GUI::OptionsDialog GUI_OptionsDialog; |