aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/UI/UIText.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/UI/UIText.cpp')
-rw-r--r--engines/wintermute/UI/UIText.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/wintermute/UI/UIText.cpp b/engines/wintermute/UI/UIText.cpp
index adfb4801e4..6034131763 100644
--- a/engines/wintermute/UI/UIText.cpp
+++ b/engines/wintermute/UI/UIText.cpp
@@ -274,7 +274,7 @@ HRESULT CUIText::LoadBuffer(byte *Buffer, bool Complete) {
break;
case TOKEN_EDITOR_PROPERTY:
- ParseEditorProperty(params, false);
+ parseEditorProperty(params, false);
break;
}
}
@@ -293,7 +293,7 @@ HRESULT CUIText::LoadBuffer(byte *Buffer, bool Complete) {
}
//////////////////////////////////////////////////////////////////////////
-HRESULT CUIText::SaveAsText(CBDynBuffer *Buffer, int Indent) {
+HRESULT CUIText::saveAsText(CBDynBuffer *Buffer, int Indent) {
Buffer->PutTextIndent(Indent, "STATIC\n");
Buffer->PutTextIndent(Indent, "{\n");
@@ -367,7 +367,7 @@ HRESULT CUIText::SaveAsText(CBDynBuffer *Buffer, int Indent) {
Buffer->PutTextIndent(Indent + 2, "\n");
// editor properties
- CBBase::SaveAsText(Buffer, Indent + 2);
+ CBBase::saveAsText(Buffer, Indent + 2);
Buffer->PutTextIndent(Indent, "}\n");
return S_OK;