summaryrefslogtreecommitdiff
path: root/include/sfx2/templdlg.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-01-08 11:01:38 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-01-08 18:20:25 +0000
commitca66b8c025fafe5fa79b749d17a28710322621c4 (patch)
treec6443e9f55db51e5a56f77ab5f8dc2fc85fac6ad /include/sfx2/templdlg.hxx
parentb7dc6101dafcfe01023608b7e1be31c1c17a82bf (diff)
SfxTemplatePanelControl doesn't have to be a DockingWindow anymore
so we can drop one more DockingWindow from .src files leaving just one left Change-Id: I2e12398ce7682193aace966ebb8d153ec9acea2e
Diffstat (limited to 'include/sfx2/templdlg.hxx')
-rw-r--r--include/sfx2/templdlg.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/sfx2/templdlg.hxx b/include/sfx2/templdlg.hxx
index 75fdfb186b16..94d213409676 100644
--- a/include/sfx2/templdlg.hxx
+++ b/include/sfx2/templdlg.hxx
@@ -38,17 +38,16 @@ namespace SfxTemplate
class SfxTemplateDialog_Impl;
-class SFX2_DLLPUBLIC SfxTemplatePanelControl : public DockingWindow
+class SFX2_DLLPUBLIC SfxTemplatePanelControl : public vcl::Window
{
public:
- SfxTemplatePanelControl (SfxBindings* pBindings, vcl::Window* pParentWindow);
+ SfxTemplatePanelControl(SfxBindings* pBindings, vcl::Window* pParentWindow);
virtual ~SfxTemplatePanelControl();
virtual void dispose() override;
virtual void DataChanged( const DataChangedEvent& _rDCEvt ) override;
virtual void Resize() override;
virtual void StateChanged( StateChangedType nStateChange ) override;
- void FreeResource();
private:
std::unique_ptr<SfxTemplateDialog_Impl> pImpl;