Hi,

Please note:
The oox module is independent from the tools module, so using anything from tools is forbidden. Especially the DBG_ASSERT/DBG_ERROR debug macros from tools/debug.hxx, which expand to nothing in release builds, but cause a linker error in debug builds. Please use instead:


#include <tools/debug.hxx>  -->  #include <osl/diagnose.h>

DBG_ASSERT( condition, "text" )  -->  OSL_ENSURE( condition, "text" )

DBG_ERROR( "text" )  -->  OSL_ENSURE( false, "text" )


Regards
Daniel

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to