diff options
author | Maxim Monastirsky <momonasmon@gmail.com> | 2015-08-13 16:42:29 +0300 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2015-08-13 17:55:08 +0300 |
commit | dd8fbd4c8ae18421975f45c7aa7befbf74f0b0d7 (patch) | |
tree | afca0f8a68b4bef022148f478e800a4e522b8bd8 | |
parent | 5045f2be71b9a548e9fb754831a9cca497db9002 (diff) |
Fix widget name
warn:vcl.layout:22464:1:vcl/source/window/builder.cxx:501:
Requested top level widget "LinePropertyPanelBase" not found
in svx/ui/sidebarline.ui
Change-Id: I49f0d6ab965f53d51b123fb36f6c79c284946f71
-rw-r--r-- | svx/source/sidebar/line/LinePropertyPanelBase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/sidebar/line/LinePropertyPanelBase.cxx b/svx/source/sidebar/line/LinePropertyPanelBase.cxx index 96564663eedd..d6fa20e2cbb2 100644 --- a/svx/source/sidebar/line/LinePropertyPanelBase.cxx +++ b/svx/source/sidebar/line/LinePropertyPanelBase.cxx @@ -149,7 +149,7 @@ namespace svx { namespace sidebar { LinePropertyPanelBase::LinePropertyPanelBase( vcl::Window* pParent, const uno::Reference<frame::XFrame>& rxFrame) -: PanelLayout(pParent, "LinePropertyPanelBase", "svx/ui/sidebarline.ui", rxFrame), +: PanelLayout(pParent, "LinePropertyPanel", "svx/ui/sidebarline.ui", rxFrame), mpStyleItem(), mpDashItem(), mnTrans(0), |