diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2020-01-06 18:57:59 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2020-01-06 22:45:12 +0100 |
commit | b8669df1622f699357478aad7c6a4439b5d5aee3 (patch) | |
tree | e75fbbbefb787de0d45a69085c5bf29f2ea909c5 /desktop | |
parent | 4056b70e6339102374898fff26f099da455475b1 (diff) |
Revert "sfx2: sidebar: new .uno commands to show and hide sidebars"
This reverts commit b6f4d3b92789e972d9b079a5561723f3e73e07a6.
These are now handled as LOK pseudo-uno commands internally,
and seem unlikely to have worked.
Retains a small change to SidebarDockingWindow..
Change-Id: I861f46f0c9b5cf39a5aa0a0de0fc2f33de800cb2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86293
Tested-by: Jenkins
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/lib/init.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index dcbc466ce4b4..a12857371858 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -3527,12 +3527,12 @@ static void doc_sendDialogEvent(LibreOfficeKitDocument* /*pThis*/, unsigned nWin } else if (aMap.find("id") != aMap.end()) { - static const OUString sClickAction("CLICK"); - static const OUString sSelectAction("SELECT"); - static const OUString sClearAction("CLEAR"); - static const OUString sTypeAction("TYPE"); - static const OUString sUpAction("UP"); - static const OUString sDownAction("DOWN"); + const OUString sClickAction("CLICK"); + const OUString sSelectAction("SELECT"); + const OUString sClearAction("CLEAR"); + const OUString sTypeAction("TYPE"); + const OUString sUpAction("UP"); + const OUString sDownAction("DOWN"); try { |