diff options
Diffstat (limited to 'include/sfx2/templdlg.hxx')
-rw-r--r-- | include/sfx2/templdlg.hxx | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/sfx2/templdlg.hxx b/include/sfx2/templdlg.hxx index 9db1a356685a..a3237d345bd9 100644 --- a/include/sfx2/templdlg.hxx +++ b/include/sfx2/templdlg.hxx @@ -38,20 +38,19 @@ namespace SfxTemplate class SfxTemplateDialog_Impl; -// class SfxTemplatePanelControl ----------------------------------------- class SFX2_DLLPUBLIC SfxTemplatePanelControl : public DockingWindow { public: SfxTemplatePanelControl (SfxBindings* pBindings, vcl::Window* pParentWindow); virtual ~SfxTemplatePanelControl(); - virtual void DataChanged( const DataChangedEvent& _rDCEvt ) SAL_OVERRIDE; - virtual void Resize() SAL_OVERRIDE; - virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE; - void FreeResource (void); + virtual void DataChanged( const DataChangedEvent& _rDCEvt ) SAL_OVERRIDE; + virtual void Resize() SAL_OVERRIDE; + virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE; + void FreeResource (void); private: - SfxTemplateDialog_Impl* pImpl; + const std::unique_ptr<SfxTemplateDialog_Impl> pImpl; SfxBindings* mpBindings; }; |