diff options
Diffstat (limited to 'svtools/source/toolpanel')
-rw-r--r-- | svtools/source/toolpanel/tablayouter.cxx | 2 | ||||
-rw-r--r-- | svtools/source/toolpanel/toolpanelcollection.hxx | 2 | ||||
-rw-r--r-- | svtools/source/toolpanel/toolpaneldrawer.hxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/toolpanel/tablayouter.cxx b/svtools/source/toolpanel/tablayouter.cxx index 68a09a37b655..39a0874d824a 100644 --- a/svtools/source/toolpanel/tablayouter.cxx +++ b/svtools/source/toolpanel/tablayouter.cxx @@ -41,7 +41,7 @@ namespace svt { TabAlignment eAlignment; IToolPanelDeck& rPanels; - ::std::auto_ptr< PanelTabBar > pTabBar; + ::std::unique_ptr< PanelTabBar > pTabBar; AccessibleFactoryAccess aAccessibleFactory; TabDeckLayouter_Data( vcl::Window& i_rParent, IToolPanelDeck& i_rPanels, diff --git a/svtools/source/toolpanel/toolpanelcollection.hxx b/svtools/source/toolpanel/toolpanelcollection.hxx index 88feb379ce59..fcce67523325 100644 --- a/svtools/source/toolpanel/toolpanelcollection.hxx +++ b/svtools/source/toolpanel/toolpanelcollection.hxx @@ -52,7 +52,7 @@ namespace svt virtual void RemoveListener( IToolPanelDeckListener& i_rListener ) SAL_OVERRIDE; private: - ::std::auto_ptr< ToolPanelCollection_Data > m_pData; + ::std::unique_ptr< ToolPanelCollection_Data > m_pData; }; diff --git a/svtools/source/toolpanel/toolpaneldrawer.hxx b/svtools/source/toolpanel/toolpaneldrawer.hxx index 3186ca1f6cfc..3a815345e2b6 100644 --- a/svtools/source/toolpanel/toolpaneldrawer.hxx +++ b/svtools/source/toolpanel/toolpaneldrawer.hxx @@ -96,7 +96,7 @@ namespace svt using Window::Paint; private: - ::std::auto_ptr< VirtualDevice > m_pPaintDevice; + ::std::unique_ptr< VirtualDevice > m_pPaintDevice; DrawerVisualization m_aVisualization; bool m_bFocused; bool m_bExpanded; |