From 0460b78515eb4e703e75559b1281008edaae7199 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 24 Nov 2013 19:53:35 +0000 Subject: (svn r26093) -Fix (r26092): compilation error --- src/script/api/script_object.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/api/script_object.cpp b/src/script/api/script_object.cpp index d9aefca3c..679efd1a7 100644 --- a/src/script/api/script_object.cpp +++ b/src/script/api/script_object.cpp @@ -290,7 +290,7 @@ ScriptObject::ActiveInstance::~ActiveInstance() if (!StrEmpty(text) && (GetCommandFlags(cmd) & CMD_STR_CTRL) == 0) { /* The string must be valid, i.e. not contain special codes. Since some * can be made with GSText, make sure the control codes are removed. */ - str_validate(text, text + strlen(text)), SVS_NONE); + ::str_validate(const_cast(text), text + strlen(text), SVS_NONE); } /* Set the default callback to return a true/false result of the DoCommand */ -- cgit v1.2.3-54-g00ecf