summaryrefslogtreecommitdiff
path: root/vcl/qa/cppunit/errorhandler.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-02-09 08:52:13 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-21 08:42:30 +0200
commit528632660b72b105345945c13c5b68060d94a91b (patch)
tree860508d482959abeb9175f0ce6b9e65954269f95 /vcl/qa/cppunit/errorhandler.cxx
parentaee66aa85e75f67135e5c6079a281e18402d261a (diff)
convert ErrCode to strong typedef
would have preferred to re-use o3tl::strong_int, of which this is a modified copy, but there are lots of convenience accessors which are nice to define on the class. Change-Id: I301b807aaf02fbced3bf75de1e1692cde6c0340a Reviewed-on: https://gerrit.libreoffice.org/38497 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/qa/cppunit/errorhandler.cxx')
-rw-r--r--vcl/qa/cppunit/errorhandler.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/qa/cppunit/errorhandler.cxx b/vcl/qa/cppunit/errorhandler.cxx
index fc06ec1869d2..f59abb0f9a96 100644
--- a/vcl/qa/cppunit/errorhandler.cxx
+++ b/vcl/qa/cppunit/errorhandler.cxx
@@ -20,10 +20,10 @@ class MockErrorHandler : private ErrorHandler
protected:
virtual bool CreateString(const ErrorInfo *pErrInfo, OUString &rErrString) const override
{
- if (!(pErrInfo->GetErrorCode() & ERRCODE_DYNAMIC_MASK))
- rErrString = "Non-dynamic error";
- else
+ if (pErrInfo->GetErrorCode().IsDynamic())
rErrString = "Dynamic error";
+ else
+ rErrString = "Non-dynamic error";
return true;
}