diff options
author | heiko tietze <tietze.heiko@gmail.com> | 2018-07-30 14:05:33 +0200 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2018-08-24 01:52:31 +0200 |
commit | 84c1b71f2bc525597e0877a2abd235a69dbc00d6 (patch) | |
tree | 6e735ff15ea0cd8732062b639c23a60cf318baeb /sfx2/source | |
parent | 2ac9cb17de765cdc5c358059c6256a3e168203ac (diff) |
tdf#118993 - Missing new Insert Special Character in Calc
Added also to Impress and Draw for consistency
Fix for tdf#116355 included and SID_CHARMAP_CONTROL disabled in Impress
like SID_CHARMAP
Change-Id: I8b9925f6124527dfc27c7a27f6c8832c7e9c88e2
Reviewed-on: https://gerrit.libreoffice.org/58323
Tested-by: Jenkins
Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/control/charmapcontrol.cxx | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/sfx2/source/control/charmapcontrol.cxx b/sfx2/source/control/charmapcontrol.cxx index 724c95f831a9..8bb684b8e9c1 100644 --- a/sfx2/source/control/charmapcontrol.cxx +++ b/sfx2/source/control/charmapcontrol.cxx @@ -196,16 +196,7 @@ IMPL_LINK_NOARG(SfxCharmapCtrl, OpenDlgHdl, Button*, void) { Close(); - uno::Reference< uno::XComponentContext > xContext( comphelper::getProcessComponentContext() ); - - uno::Sequence<beans::PropertyValue> aArgs(2); - aArgs[0].Name = "Symbols"; - aArgs[0].Value <<= OUString(); - - aArgs[1].Name = "FontName"; - aArgs[1].Value <<= OUString(); - //shortcut to launch dialog.. call uno command with empty arguments - comphelper::dispatchCommand(".uno:InsertSymbol", aArgs); + comphelper::dispatchCommand(".uno:InsertSymbol", {}); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |