summaryrefslogtreecommitdiff
path: root/include/svtools/toolpanel
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-29 13:56:43 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-29 13:57:17 +0200
commit014e7933af751bfe0a03867373b82efa806f3a3d (patch)
tree59be1f8b861bb6bb8a54e4c028683f15f0c615cf /include/svtools/toolpanel
parent14157dcdf175f1ef45903f7ec3ed85d0f7c76798 (diff)
svtools: std::auto_ptr -> std::unique_ptr
...changing HTMLOptions to std::vector<std::unique_ptr<...>> because boost::ptr_vector<...>::push_back only supports auto_ptr, not unique_ptr. Change-Id: Ie5f92bc40ce5425dc1c634b17addc2b0dd9bbda3
Diffstat (limited to 'include/svtools/toolpanel')
-rw-r--r--include/svtools/toolpanel/paneltabbar.hxx2
-rw-r--r--include/svtools/toolpanel/tablayouter.hxx2
-rw-r--r--include/svtools/toolpanel/toolpaneldeck.hxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/include/svtools/toolpanel/paneltabbar.hxx b/include/svtools/toolpanel/paneltabbar.hxx
index 0964d79c9e40..18e4d1ea1197 100644
--- a/include/svtools/toolpanel/paneltabbar.hxx
+++ b/include/svtools/toolpanel/paneltabbar.hxx
@@ -84,7 +84,7 @@ namespace svt
GetComponentInterface( bool i_bCreate ) SAL_OVERRIDE;
private:
- ::std::auto_ptr< PanelTabBar_Impl > m_pImpl;
+ ::std::unique_ptr< PanelTabBar_Impl > m_pImpl;
};
diff --git a/include/svtools/toolpanel/tablayouter.hxx b/include/svtools/toolpanel/tablayouter.hxx
index 3ad6060df5df..fb106270b21f 100644
--- a/include/svtools/toolpanel/tablayouter.hxx
+++ b/include/svtools/toolpanel/tablayouter.hxx
@@ -83,7 +83,7 @@ namespace svt
) SAL_OVERRIDE;
private:
- ::std::auto_ptr< TabDeckLayouter_Data > m_pData;
+ ::std::unique_ptr< TabDeckLayouter_Data > m_pData;
};
diff --git a/include/svtools/toolpanel/toolpaneldeck.hxx b/include/svtools/toolpanel/toolpaneldeck.hxx
index 48127c569fd6..d9c06ced6771 100644
--- a/include/svtools/toolpanel/toolpaneldeck.hxx
+++ b/include/svtools/toolpanel/toolpaneldeck.hxx
@@ -172,7 +172,7 @@ namespace svt
GetComponentInterface( bool i_bCreate ) SAL_OVERRIDE;
private:
- ::std::auto_ptr< ToolPanelDeck_Impl > m_pImpl;
+ ::std::unique_ptr< ToolPanelDeck_Impl > m_pImpl;
};