output unsupported property name

This commit is contained in:
Caolán McNamara 2011-05-20 22:19:29 +01:00
parent ce8ee87b0d
commit 7ff13f7afb

View file

@ -1534,7 +1534,11 @@ void PrintDialog::setupOptionalUI()
}
else
{
OSL_FAIL( "Unsupported UI option" );
rtl::OStringBuffer sMessage;
sMessage.append(RTL_CONSTASCII_STRINGPARAM("Unsupported UI option: \""));
sMessage.append(rtl::OUStringToOString(aCtrlType, RTL_TEXTENCODING_UTF8));
sMessage.append('"');
OSL_FAIL( sMessage.getStr() );
}
pCurColumn = pSaveCurColumn;