output unsupported property name
This commit is contained in:
parent
ce8ee87b0d
commit
7ff13f7afb
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue