diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-02-22 13:29:03 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-02-26 07:20:25 +0100 |
commit | ace95cf48ee88d78a17765e5f4f26bb93d5940cf (patch) | |
tree | 206d070d4b9eef0c84a78deda5df863ac174354c /accessibility | |
parent | fa2dd2ba03f8be1f148dca8f6164daaf7bbf7d96 (diff) |
ColorData->Color in various
Change-Id: I22018b6a535224316d93bfd621771248b873a218
Reviewed-on: https://gerrit.libreoffice.org/50167
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'accessibility')
-rw-r--r-- | accessibility/source/extended/textwindowaccessibility.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accessibility/source/extended/textwindowaccessibility.cxx b/accessibility/source/extended/textwindowaccessibility.cxx index 5183af524492..3b62c886d7af 100644 --- a/accessibility/source/extended/textwindowaccessibility.cxx +++ b/accessibility/source/extended/textwindowaccessibility.cxx @@ -2360,9 +2360,9 @@ css::uno::Any Document::mapFontColor(::Color const & rColor) // static ::Color Document::mapFontColor(css::uno::Any const & rColor) { - ::sal_Int32 nColor = 0; + ::Color nColor; rColor >>= nColor; - return ::Color(static_cast< ::ColorData >(nColor)); + return nColor; } // static |