1
0
forked from 0ad/0ad

Made a little change only to make it compile, hopefully it won't do too much damage until Philip can correct this.

This was SVN commit r1126.
This commit is contained in:
Gee 2004-09-06 02:22:38 +00:00
parent 9133042540
commit da465ae1dc

View File

@ -1,4 +1,4 @@
// $Id: JSInterface_IGUIObject.cpp,v 1.13 2004/09/04 14:42:46 philip Exp $
// $Id: JSInterface_IGUIObject.cpp,v 1.14 2004/09/06 02:22:38 gee Exp $
#include "precompiled.h"
@ -162,7 +162,8 @@ JSBool JSI_IGUIObject::getProperty(JSContext* cx, JSObject* obj, jsval id, jsval
CGUIString value;
GUI<CGUIString>::GetSetting(e, propName, value);
// Create a garbage-collectable copy of the string
*vp = STRING_TO_JSVAL(JS_NewStringCopyZ(cx, value.GetRawString().c_str() ));
// TODO Gee@Ykkrosh: this was just to make it compile
*vp = STRING_TO_JSVAL(JS_NewStringCopyZ(cx, (const char*)value.GetRawString().c_str() ));
break;
}