aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction
diff options
context:
space:
mode:
authorMax Horn2008-11-12 14:30:16 +0000
committerMax Horn2008-11-12 14:30:16 +0000
commitc0f82d351894df16e23690b4361e66bed0fb6f84 (patch)
treef6ddb6d08e8dbe0637a5e5dcfb13d4a4fa5c21c0 /engines/parallaction
parent144be21bed1001c4a72739ef7656908cbf71e909 (diff)
downloadscummvm-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/parallaction')
-rw-r--r--engines/parallaction/saveload.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/parallaction/saveload.cpp b/engines/parallaction/saveload.cpp
index f012c1c76b..afa6b34499 100644
--- a/engines/parallaction/saveload.cpp
+++ b/engines/parallaction/saveload.cpp
@@ -259,9 +259,9 @@ SaveLoadChooser::SaveLoadChooser(const String &title, const String &buttonLabel)
_gfxWidget = new GUI::GraphicsWidget(this, 0, 0, 10, 10);
- _date = new GUI::StaticTextWidget(this, 0, 0, 10, 10, "No date saved", GUI::kTextAlignCenter);
- _time = new GUI::StaticTextWidget(this, 0, 0, 10, 10, "No time saved", GUI::kTextAlignCenter);
- _playtime = new GUI::StaticTextWidget(this, 0, 0, 10, 10, "No playtime saved", GUI::kTextAlignCenter);
+ _date = new GUI::StaticTextWidget(this, 0, 0, 10, 10, "No date saved", Graphics::kTextAlignCenter);
+ _time = new GUI::StaticTextWidget(this, 0, 0, 10, 10, "No time saved", Graphics::kTextAlignCenter);
+ _playtime = new GUI::StaticTextWidget(this, 0, 0, 10, 10, "No playtime saved", Graphics::kTextAlignCenter);
// Buttons
new GUI::ButtonWidget(this, "ScummSaveLoad.Cancel", "Cancel", GUI::kCloseCmd, 0);