diff options
Diffstat (limited to 'svx/source/sidebar/PanelFactory.cxx')
-rw-r--r-- | svx/source/sidebar/PanelFactory.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/svx/source/sidebar/PanelFactory.cxx b/svx/source/sidebar/PanelFactory.cxx index 1749be913f47..1817088fc534 100644 --- a/svx/source/sidebar/PanelFactory.cxx +++ b/svx/source/sidebar/PanelFactory.cxx @@ -24,6 +24,7 @@ #include "paragraph/ParaPropertyPanel.hxx" #include "lists/ListsPropertyPanel.hxx" #include "area/AreaPropertyPanel.hxx" +#include "fontwork/FontworkPropertyPanel.hxx" #include "shadow/ShadowPropertyPanel.hxx" #include "effect/EffectPropertyPanel.hxx" #include "graphic/GraphicPropertyPanel.hxx" @@ -142,6 +143,10 @@ Reference<ui::XUIElement> SAL_CALL PanelFactory::createUIElement ( { xControl = AreaPropertyPanel::Create(pParent, xFrame, pBindings); } + else if (rsResourceURL.endsWith("/FontworkPropertyPanel")) + { + xControl = FontworkPropertyPanel::Create(pParent, xFrame); + } else if (rsResourceURL.endsWith("/ShadowPropertyPanel")) { xControl = ShadowPropertyPanel::Create(pParent, pBindings); |