diff options
author | Thomas Lange [tl] <tl@openoffice.org> | 2010-03-05 13:36:31 +0100 |
---|---|---|
committer | Thomas Lange [tl] <tl@openoffice.org> | 2010-03-05 13:36:31 +0100 |
commit | 4f4953cc81732f87959998cb6afd7ccede3ff803 (patch) | |
tree | af289142ed7540d009998cebf66b0f6a0d79436f /cui/source/inc | |
parent | 1ec7c5a40bbe34b1b1dbba8dea2c1364c492ece7 (diff) |
cws tl74: #i107721#, #i108358# fixed broken SVX_RES to CUI_RES after merging to m73 where those dialogs got moved to cui project
Diffstat (limited to 'cui/source/inc')
-rwxr-xr-x | cui/source/inc/hyphen.hxx | 4 | ||||
-rwxr-xr-x | cui/source/inc/thesdlg.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cui/source/inc/hyphen.hxx b/cui/source/inc/hyphen.hxx index 48f4a31705d0..e28150ea7e4a 100755 --- a/cui/source/inc/hyphen.hxx +++ b/cui/source/inc/hyphen.hxx @@ -29,7 +29,7 @@ // include --------------------------------------------------------------- -#include <boost/shared_ptr.hpp> +#include <memory> #include <vcl/edit.hxx> #include <vcl/button.hxx> @@ -64,7 +64,7 @@ struct SvxHyphenWordDialog_Impl; class SvxHyphenWordDialog : public SfxModalDialog { - boost::shared_ptr< SvxHyphenWordDialog_Impl > m_pImpl; + std::auto_ptr< SvxHyphenWordDialog_Impl > m_pImpl; public: SvxHyphenWordDialog( const String &rWord, LanguageType nLang, diff --git a/cui/source/inc/thesdlg.hxx b/cui/source/inc/thesdlg.hxx index f5d0bd91b584..99b292b560a5 100755 --- a/cui/source/inc/thesdlg.hxx +++ b/cui/source/inc/thesdlg.hxx @@ -33,7 +33,7 @@ #include "svx/stddlg.hxx" #include "svx/svxdllapi.h" -#include <boost/shared_ptr.hpp> +#include <memory> ///////////////////////////////////////////////////////////////// @@ -42,7 +42,7 @@ struct SvxThesaurusDialog_Impl; class SvxThesaurusDialog : public SvxStandardDialog { - boost::shared_ptr< SvxThesaurusDialog_Impl > m_pImpl; + std::auto_ptr< SvxThesaurusDialog_Impl > m_pImpl; SVX_DLLPRIVATE virtual void Apply(); |