Kaydet (Commit) 9b1e55fe authored tarafından Michael Stahl's avatar Michael Stahl

editeng: replace boost::ptr_map with std::map<std::unique_ptr>

Change-Id: I343071cc29c2041bc98456954b0aa32fff324d82
üst 15f32b5a
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#include <editeng/editengdllapi.h> #include <editeng/editengdllapi.h>
#include <map> #include <map>
#include <boost/ptr_container/ptr_map.hpp> #include <memory>
class CharClass; class CharClass;
class SfxPoolItem; class SfxPoolItem;
...@@ -233,7 +233,7 @@ class EDITENG_DLLPUBLIC SvxAutoCorrect ...@@ -233,7 +233,7 @@ class EDITENG_DLLPUBLIC SvxAutoCorrect
SvxSwAutoFormatFlags aSwFlags; // StarWriter AutoFormat Flags SvxSwAutoFormatFlags aSwFlags; // StarWriter AutoFormat Flags
// all languages in a table // 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; std::map<LanguageTag, long> aLastFileTable;
CharClass* pCharClass; CharClass* pCharClass;
......
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