summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2015-10-14 12:41:43 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2015-10-14 12:42:25 +0200
commit64c8bf922dbd938f6c53a61410317242cd3962aa (patch)
tree7b6cadfa972bfa4c7b515b16d37045b5b3e92c11
parente75701ce9efba6320ed286ffbe8dd6f87d15b902 (diff)
tdf#95041 Fix sidebar node names
Change-Id: I3435de44e04268dc557faedba944c2c33385b89c
-rw-r--r--sc/source/ui/view/tabvwsh3.cxx2
-rw-r--r--sd/source/ui/table/tablefunction.cxx2
-rw-r--r--sd/source/ui/view/drviews2.cxx4
3 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/view/tabvwsh3.cxx b/sc/source/ui/view/tabvwsh3.cxx
index 70ab1592ece2..5c7e3284521a 100644
--- a/sc/source/ui/view/tabvwsh3.cxx
+++ b/sc/source/ui/view/tabvwsh3.cxx
@@ -565,7 +565,7 @@ void ScTabViewShell::Execute( SfxRequest& rReq )
// First make sure that the sidebar is visible
pThisFrame->ShowChildWindow(SID_SIDEBAR);
- ::sfx2::sidebar::Sidebar::ShowPanel("FunctionsPanel",
+ ::sfx2::sidebar::Sidebar::ShowPanel("ScFunctionsPanel",
pThisFrame->GetFrame().GetFrameInterface());
rReq.Done ();
}
diff --git a/sd/source/ui/table/tablefunction.cxx b/sd/source/ui/table/tablefunction.cxx
index d1f92617f968..442a686ef9c7 100644
--- a/sd/source/ui/table/tablefunction.cxx
+++ b/sd/source/ui/table/tablefunction.cxx
@@ -208,7 +208,7 @@ void DrawViewShell::FuTable(SfxRequest& rReq)
// First make sure that the sidebar is visible
GetViewFrame()->ShowChildWindow(SID_SIDEBAR);
::sfx2::sidebar::Sidebar::ShowPanel(
- OUString("ImpressTableDesignPanel"),
+ OUString("SdTableDesignPanel"),
GetViewFrame()->GetFrame().GetFrameInterface());
}
diff --git a/sd/source/ui/view/drviews2.cxx b/sd/source/ui/view/drviews2.cxx
index 67c41682501c..59de2423e16c 100644
--- a/sd/source/ui/view/drviews2.cxx
+++ b/sd/source/ui/view/drviews2.cxx
@@ -175,8 +175,8 @@
#include <memory>
namespace {
- const char CustomAnimationPanelId[] = "CustomAnimationPanel";
- const char SlideTransitionPanelId[] = "SlideTransitionPanel";
+ const char CustomAnimationPanelId[] = "SdCustomAnimationPanel";
+ const char SlideTransitionPanelId[] = "SdSlideTransitionPanel";
const char GalleryPanelId[] = "GalleryPanel";
}