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 /extensions | |
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 'extensions')
-rw-r--r-- | extensions/source/propctrlr/standardcontrol.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/propctrlr/standardcontrol.cxx b/extensions/source/propctrlr/standardcontrol.cxx index 26d154eb1880..76417c0a1216 100644 --- a/extensions/source/propctrlr/standardcontrol.cxx +++ b/extensions/source/propctrlr/standardcontrol.cxx @@ -654,7 +654,7 @@ namespace pcr css::util::Color nColor = COL_TRANSPARENT; if (_rValue.hasValue()) _rValue >>= nColor; - getTypedControlWindow()->SelectEntry(::Color(static_cast<ColorData>(nColor))); + getTypedControlWindow()->SelectEntry(::Color(sal_uInt32(nColor))); } Any SAL_CALL OColorControl::getValue() |