diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-03-05 10:27:25 +0000 |
---|---|---|
committer | Szymon Kłos <szymon.klos@collabora.com> | 2021-05-25 12:12:30 +0200 |
commit | daef7eccd9f5f6fcc3456fa01bce09174de0ecf6 (patch) | |
tree | 52ca4417f62ba827ebe7215ae71f3c357c2bd941 | |
parent | 271c64ba8084b3672b99dc046d3e0e80cb55774f (diff) |
move properties from container vcl::Window to window-filling child
Change-Id: I5ddd17220ff8b45678716c406297d305aa2229e0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112000
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | sd/source/ui/sidebar/LayoutMenu.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/sidebar/LayoutMenu.cxx b/sd/source/ui/sidebar/LayoutMenu.cxx index 182f7c9211ee..89bd0a6efb64 100644 --- a/sd/source/ui/sidebar/LayoutMenu.cxx +++ b/sd/source/ui/sidebar/LayoutMenu.cxx @@ -197,8 +197,8 @@ void LayoutMenu::implConstruct( DrawDocShell& rDocumentShell ) Link<::sd::tools::EventMultiplexerEvent&,void> aEventListenerLink (LINK(this,LayoutMenu,EventMultiplexerListener)); mrBase.GetEventMultiplexer()->AddEventListener(aEventListenerLink); - Window::SetHelpId(HID_SD_TASK_PANE_PREVIEW_LAYOUTS); - SetAccessibleName(SdResId(STR_TASKPANEL_LAYOUT_MENU_TITLE)); + mxLayoutValueSet->SetHelpId(HID_SD_TASK_PANE_PREVIEW_LAYOUTS); + mxLayoutValueSet->SetAccessibleName(SdResId(STR_TASKPANEL_LAYOUT_MENU_TITLE)); Link<const OUString&,void> aStateChangeLink (LINK(this,LayoutMenu,StateChangeHandler)); mxListener = new ::sd::tools::SlotStateListener( |