Kaydet (Commit) 00061554 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

framework: std::auto_ptr -> std::unique_ptr

Change-Id: I6ef5e9018d1e33c205eae934c404d3391a4693f2
üst 3b206d48
......@@ -110,7 +110,7 @@ namespace framework
void setStorage( const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >& Storage ) throw (::com::sun::star::uno::RuntimeException);
private:
::std::auto_ptr<ImageManagerImpl> m_pImpl;
::std::unique_ptr<ImageManagerImpl> m_pImpl;
};
}
......
......@@ -95,9 +95,7 @@ namespace framework
virtual sal_Bool SAL_CALL isReadOnly() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
private:
SAL_WNODEPRECATED_DECLARATIONS_PUSH
::std::auto_ptr<ImageManagerImpl> m_pImpl;
SAL_WNODEPRECATED_DECLARATIONS_POP
::std::unique_ptr<ImageManagerImpl> m_pImpl;
};
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment