aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/UI/UIText.cpp
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-07-09 04:50:38 +0200
committerEinar Johan Trøan Sømåen2012-07-09 04:50:38 +0200
commit0a43bba003c5e5cbf302a667e8515d4066d72407 (patch)
treef47246629e29786bbc4239c286b19153dbb37e5d /engines/wintermute/UI/UIText.cpp
parent0ef77c57b6f6889471c7c5d902999fcf34c47a89 (diff)
downloadscummvm-rg350-0a43bba003c5e5cbf302a667e8515d4066d72407.tar.gz
scummvm-rg350-0a43bba003c5e5cbf302a667e8515d4066d72407.tar.bz2
scummvm-rg350-0a43bba003c5e5cbf302a667e8515d4066d72407.zip
WINTERMUTE: Rename FuncName->funcName in coll_templ.h
Diffstat (limited to 'engines/wintermute/UI/UIText.cpp')
-rw-r--r--engines/wintermute/UI/UIText.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/UI/UIText.cpp b/engines/wintermute/UI/UIText.cpp
index 884d241e07..44fb695687 100644
--- a/engines/wintermute/UI/UIText.cpp
+++ b/engines/wintermute/UI/UIText.cpp
@@ -87,7 +87,7 @@ ERRORCODE CUIText::display(int offsetX, int offsetY) {
font->drawText((byte *)_text, offsetX + _posX, offsetY + _posY + textOffset, _width, _textAlign, _height);
}
- //Game->_renderer->_rectList.Add(new CBActiveRect(Game, this, NULL, OffsetX + _posX, OffsetY + _posY, _width, _height, 100, 100, false));
+ //Game->_renderer->_rectList.add(new CBActiveRect(Game, this, NULL, OffsetX + _posX, OffsetY + _posY, _width, _height, 100, 100, false));
return STATUS_OK;
}
@@ -360,7 +360,7 @@ ERRORCODE CUIText::saveAsText(CBDynBuffer *buffer, int indent) {
buffer->putTextIndent(indent + 2, "\n");
// scripts
- for (int i = 0; i < _scripts.GetSize(); i++) {
+ for (int i = 0; i < _scripts.getSize(); i++) {
buffer->putTextIndent(indent + 2, "SCRIPT=\"%s\"\n", _scripts[i]->_filename);
}