Urk, forgot to build this one after merging and goofed a bit.

This commit is contained in:
Uli Kusterer
2014-01-25 03:37:16 +01:00
parent 2861a7e63a
commit 35ce309f73
2 changed files with 14 additions and 20 deletions

View File

@@ -1325,7 +1325,15 @@ void XMLElement::SetText( float v )
}
void XMLElement::SetText( double v )
void XMLElement::SetText( double v )
{
char buf[BUF_SIZE];
XMLUtil::ToStr( v, buf, BUF_SIZE );
SetText( buf );
}
void XMLElement::SetText( long long v )
{
char buf[BUF_SIZE];
XMLUtil::ToStr( v, buf, BUF_SIZE );