diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-12-29 19:37:57 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2023-01-02 19:04:31 +0000 |
commit | cc4ead451cb3b6ce6994370b3a9263756ea284d1 (patch) | |
tree | 9cb001da4f62d1a2a5db6d56c726990864f9f8a9 /sd | |
parent | a178a2ac6df8dc63a7ab8d4a19b90ae8a17baca4 (diff) |
Resolves: tdf#150339 two arguments called "Color"
from around:
commit 780d83771af89e6b27b3618d9c033c3fb29ba803
Date: Mon Nov 4 17:17:58 2019 +0100
jsdialogs: .uno:Color with string argument
and:
commit 1144712bb99cfb699e73b473ee44351c50a35613
Date: Mon Oct 28 10:19:50 2019 +0100
jsdialogs: make possible to set .uno:BackgroundColor in Writer
SvxColorItem Color SID_ATTR_CHAR_COLOR
(SfxStringItem Color SID_ATTR_COLOR_STR, SvxColorItem Color SID_ATTR_CHAR_COLOR,...
^^^^^ ^^^^^
rename the most recently added to "ColorString"
Change-Id: I9e00be60c768af124be7df800df4b26df83b5267
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144866
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/qa/unit/uiimpress.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/qa/unit/uiimpress.cxx b/sd/qa/unit/uiimpress.cxx index 13f072cf2488..0235cada8194 100644 --- a/sd/qa/unit/uiimpress.cxx +++ b/sd/qa/unit/uiimpress.cxx @@ -757,7 +757,7 @@ CPPUNIT_TEST_FIXTURE(SdUiImpressTest, testPageFillColor) // Set FillPageColor uno::Sequence<beans::PropertyValue> aPropertyValues(comphelper::InitPropertySequence({ - { "Color", uno::Any(OUString("ff0000")) }, + { "ColorString", uno::Any(OUString("ff0000")) }, })); dispatchCommand(mxComponent, ".uno:FillPageColor", aPropertyValues); |