mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-27 11:12:06 +00:00
huge cleanup and conversion of most string handling (especially paths) to unicode
please note: format strings must be %hs for char* arguments and %ls for wchar_t* This was SVN commit r7161.
This commit is contained in:
@@ -416,7 +416,7 @@ public:
|
||||
void ImmediateCopy( IJSComplex* UNUSED(CopyTo), IJSComplex* UNUSED(CopyFrom),
|
||||
IJSComplexProperty* UNUSED(CopyProperty) )
|
||||
{
|
||||
debug_warn("ImmediateCopy called on a CJSValComplexProperty (something's gone wrong with the inheritance on this object)" );
|
||||
debug_warn(L"ImmediateCopy called on a CJSValComplexProperty (something's gone wrong with the inheritance on this object)" );
|
||||
}
|
||||
};
|
||||
|
||||
@@ -449,7 +449,7 @@ public:
|
||||
}
|
||||
void ImmediateCopy( IJSComplex* UNUSED(CopyTo), IJSComplex* UNUSED(CopyFrom), IJSComplexProperty* UNUSED(CopyProperty) )
|
||||
{
|
||||
debug_warn("ImmediateCopy called on a property wrapping getter/setter functions (something's gone wrong with the inheritance for this object)" );
|
||||
debug_warn(L"ImmediateCopy called on a property wrapping getter/setter functions (something's gone wrong with the inheritance for this object)" );
|
||||
}
|
||||
};
|
||||
|
||||
@@ -983,7 +983,7 @@ void CJSComplex<T, ReadOnly>::DeletePreviouslyAssignedProperty( const CStrW& Pro
|
||||
it = m_Properties.find( PropertyName );
|
||||
if( it != m_Properties.end() )
|
||||
{
|
||||
debug_warn("BUG: CJSComplexProperty added but already existed!");
|
||||
debug_warn(L"BUG: CJSComplexProperty added but already existed!");
|
||||
jscomplexproperty_suballoc_free(it->second);
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user