aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/UI/UIButton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/UI/UIButton.cpp')
-rw-r--r--engines/wintermute/UI/UIButton.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/wintermute/UI/UIButton.cpp b/engines/wintermute/UI/UIButton.cpp
index 493c41649c..d9d39791f5 100644
--- a/engines/wintermute/UI/UIButton.cpp
+++ b/engines/wintermute/UI/UIButton.cpp
@@ -421,7 +421,7 @@ HRESULT CUIButton::LoadBuffer(byte *Buffer, bool Complete) {
break;
case TOKEN_EDITOR_PROPERTY:
- ParseEditorProperty(params, false);
+ parseEditorProperty(params, false);
break;
}
}
@@ -440,7 +440,7 @@ HRESULT CUIButton::LoadBuffer(byte *Buffer, bool Complete) {
}
//////////////////////////////////////////////////////////////////////////
-HRESULT CUIButton::SaveAsText(CBDynBuffer *Buffer, int Indent) {
+HRESULT CUIButton::saveAsText(CBDynBuffer *Buffer, int Indent) {
Buffer->PutTextIndent(Indent, "BUTTON\n");
Buffer->PutTextIndent(Indent, "{\n");
@@ -532,7 +532,7 @@ HRESULT CUIButton::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;