diff options
author | Michael Stahl <mstahl@redhat.com> | 2017-02-07 23:02:28 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-02-07 23:02:28 +0100 |
commit | 32cae6a2eaa41568888df9c8fc5605debd8d704a (patch) | |
tree | a17234bc71f7cbde274bfa2c9930d7ea2dfe35bf /sd | |
parent | 178f5306979ef55a5682191dcdafb9e926e57cde (diff) |
Revert "create ErrorHandlerFlags scoped enum for error handling flags"
This reverts commit 05e78bde26d8b8b257ed22a0ce20c5b386a629d1.
Depends on the other commit that needs reverting
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/xml/sdxmlwrp.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/filter/xml/sdxmlwrp.cxx b/sd/source/filter/xml/sdxmlwrp.cxx index 9f8c176f6495..d79ff01c3048 100644 --- a/sd/source/filter/xml/sdxmlwrp.cxx +++ b/sd/source/filter/xml/sdxmlwrp.cxx @@ -249,13 +249,13 @@ sal_Int32 ReadThroughComponent( (bMustBeSuccessfull ? ERR_FORMAT_FILE_ROWCOL : WARN_FORMAT_FILE_ROWCOL), rStreamName, sErr, - ErrorHandlerFlags::ButtonsOk | ErrorHandlerFlags::MessageError ))->GetErrorCode(); + ERRCODE_BUTTON_OK | ERRCODE_MSG_ERROR ))->GetErrorCode(); } else { DBG_ASSERT( bMustBeSuccessfull, "Warnings are not supported" ); return (new StringErrorInfo( ERR_FORMAT_ROWCOL, sErr, - ErrorHandlerFlags::ButtonsOk | ErrorHandlerFlags::MessageError ))->GetErrorCode(); + ERRCODE_BUTTON_OK | ERRCODE_MSG_ERROR ))->GetErrorCode(); } } catch (const xml::sax::SAXException& r) |