summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-07-17 18:19:29 +0200
committerMichael Stahl <mstahl@redhat.com>2015-07-17 20:26:59 +0200
commit9b1e55fe02dbdffadf08f6ede88f68b3cabae9fa (patch)
tree88a1ec7133d4db20abe84f04612719892d234e16 /include
parent15f32b5a1ea289159703dd7b118a911c8d0da61d (diff)
editeng: replace boost::ptr_map with std::map<std::unique_ptr>
Change-Id: I343071cc29c2041bc98456954b0aa32fff324d82
Diffstat (limited to 'include')
-rw-r--r--include/editeng/svxacorr.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/editeng/svxacorr.hxx b/include/editeng/svxacorr.hxx
index 41c1db3c4ae8..0f8a46760607 100644
--- a/include/editeng/svxacorr.hxx
+++ b/include/editeng/svxacorr.hxx
@@ -32,7 +32,7 @@
#include <editeng/editengdllapi.h>
#include <map>
-#include <boost/ptr_container/ptr_map.hpp>
+#include <memory>
class CharClass;
class SfxPoolItem;
@@ -233,7 +233,7 @@ class EDITENG_DLLPUBLIC SvxAutoCorrect
SvxSwAutoFormatFlags aSwFlags; // StarWriter AutoFormat Flags
// all languages in a table
- boost::ptr_map<LanguageTag, SvxAutoCorrectLanguageLists>* pLangTable;
+ std::map<LanguageTag, std::unique_ptr<SvxAutoCorrectLanguageLists>>* m_pLangTable;
std::map<LanguageTag, long> aLastFileTable;
CharClass* pCharClass;