remove bool overload. It's being used instead of the RString one for string constants.

This commit is contained in:
Glenn Maynard
2006-10-02 06:25:28 +00:00
parent d188c2fd12
commit f0fe542b2f
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -52,7 +52,6 @@ bool XNode::GetAttrValue( const RString &sName, DateTime &out ) const { const RS
void XNode::SetValue( const RString &v ) { m_sValue = v; }
void XNode::SetValue( int v ) { m_sValue = ssprintf("%d",v); }
void XNode::SetValue( float v ) { m_sValue = ssprintf("%f",v); }
void XNode::SetValue( bool v ) { m_sValue = ssprintf("%d",v); }
void XNode::SetValue( unsigned v ) { m_sValue = ssprintf("%u",v); }
void XNode::SetValue( const DateTime &v ) { m_sValue = v.GetString(); }