summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-25 17:35:05 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-25 17:35:05 +0200
commita924606810a5d6e9a8e3d23e491d0bea5a5d2477 (patch)
treeb52bc75ea90af5a66aadb6b75faf50f94ab70727 /sw
parent09b13e1e4c6667b307fdd9608a02d2a792efd940 (diff)
editeng: std::auto_ptr -> std::unique_ptr
Change-Id: I25e3599a37d720cbcf70ea13ab30234e54637d53
Diffstat (limited to 'sw')
-rw-r--r--sw/source/uibase/docvw/SidebarTxtControlAcc.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/sw/source/uibase/docvw/SidebarTxtControlAcc.cxx b/sw/source/uibase/docvw/SidebarTxtControlAcc.cxx
index d7bdc2dfe690..42d31065aec8 100644
--- a/sw/source/uibase/docvw/SidebarTxtControlAcc.cxx
+++ b/sw/source/uibase/docvw/SidebarTxtControlAcc.cxx
@@ -35,8 +35,6 @@
#include <svx/AccessibleTextHelper.hxx>
#include <editeng/outliner.hxx>
-#include <boost/scoped_ptr.hpp>
-
namespace sw { namespace sidebarwindows {
// declaration and implementation of <SvxEditSource>
@@ -119,7 +117,7 @@ IMPL_LINK(SidebarTextEditSource, NotifyHdl, EENotify*, pNotify)
{
if ( pNotify )
{
- boost::scoped_ptr< SfxHint > aHint( SvxEditSourceHelper::EENotification2Hint( pNotify ) );
+ std::unique_ptr< SfxHint > aHint( SvxEditSourceHelper::EENotification2Hint( pNotify ) );
if( aHint.get() )
{