diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-08-31 14:45:17 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-08-31 16:00:33 +0200 |
commit | 52bac50deb628cb21c88d5dcab032d4980bb8974 (patch) | |
tree | a4b597dfd91888ace8ad6a04af5a1a0ddc6a0a63 /sd | |
parent | 725aa105df08b5fa4f25e5eb9eb07f9dafb79d99 (diff) |
sd: fix un-sorted SidArray in FuChar::DoExecute()
Triggers an assert in SfxBindings::Invalidate().
(regression from ecc7308efa973fd1f1985ff9a0a0f01414b73f2b)
Change-Id: Ida5b6c006ef6b8a839962c4f09c8341eee980270
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/func/fuchar.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/func/fuchar.cxx b/sd/source/ui/func/fuchar.cxx index 0fbd9dd683d1..cd02f20e80ba 100644 --- a/sd/source/ui/func/fuchar.cxx +++ b/sd/source/ui/func/fuchar.cxx @@ -143,11 +143,11 @@ void FuChar::DoExecute( SfxRequest& rReq ) SID_ATTR_CHAR_UNDERLINE, SID_ATTR_CHAR_FONTHEIGHT, SID_ATTR_CHAR_COLOR, - SID_ATTR_CHAR_BACK_COLOR, SID_ATTR_CHAR_KERNING, SID_ATTR_CHAR_CASEMAP, SID_SET_SUPER_SCRIPT, SID_SET_SUB_SCRIPT, + SID_ATTR_CHAR_BACK_COLOR, 0 }; mpViewShell->GetViewFrame()->GetBindings().Invalidate( SidArray ); |