[Libreoffice-commits] core.git: desktop/source sfx2/source
Mihai Varga
mihai.varga at collabora.com
Fri Dec 18 06:59:14 PST 2015
desktop/source/lib/init.cxx | 3 +++
sfx2/source/control/unoctitm.cxx | 7 +++++--
2 files changed, 8 insertions(+), 2 deletions(-)
New commits:
commit 8a7a20f67567ee94a5d3a77230c8e260f0142c1c
Author: Mihai Varga <mihai.varga at collabora.com>
Date: Fri Dec 18 16:55:25 2015 +0200
LOK: get feedback for all of the font/back color commands
Change-Id: Id4aac707666420752b985bcfd03b5b9bb99f79f1
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index 8fa8e0e..3b0c7d7 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -661,9 +661,12 @@ static void doc_iniUnoCommands ()
OUString sUnoCommands[] =
{
OUString(".uno:BackColor"),
+ OUString(".uno:BackgroundColor"),
OUString(".uno:Bold"),
OUString(".uno:CenterPara"),
+ OUString(".uno:CharBackColor"),
OUString(".uno:CharFontName"),
+ OUString(".uno:Color"),
OUString(".uno:DecrementIndent"),
OUString(".uno:DefaultBullet"),
OUString(".uno:DefaultNumbering"),
diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx
index 00c76e2..8645826 100644
--- a/sfx2/source/control/unoctitm.cxx
+++ b/sfx2/source/control/unoctitm.cxx
@@ -1102,8 +1102,11 @@ void SfxDispatchController_Impl::InterceptLOKStateChangeEvent(const SfxObjectShe
aEvent.State >>= aTemplate;
aBuffer.append(aTemplate.StyleName);
}
- else if (aEvent.FeatureURL.Path == "FontColor" ||
- aEvent.FeatureURL.Path == "BackColor")
+ else if (aEvent.FeatureURL.Path == "BackColor" ||
+ aEvent.FeatureURL.Path == "BackgroundColor" ||
+ aEvent.FeatureURL.Path == "CharBackColor" ||
+ aEvent.FeatureURL.Path == "Color" ||
+ aEvent.FeatureURL.Path == "FontColor")
{
sal_Int32 nColor = -1;
aEvent.State >>= nColor;
More information about the Libreoffice-commits
mailing list