summaryrefslogtreecommitdiff
path: root/linguistic/source/lngsvcmgr.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-11 09:17:24 +0200
committerNoel Grandin <noel@peralex.com>2015-11-11 11:35:42 +0200
commit44d3577f4b5ec181219268826d2ec504e61541f3 (patch)
treed161a57f4db991589597034ecdc7b9ed7a38d2f3 /linguistic/source/lngsvcmgr.hxx
parent5d892a3378dfd5c452ba106b002c7cef9a77a861 (diff)
linguistic: boost::ptr_vector->std::vector<std::unique_ptr>
Change-Id: I4343b77dde4353db6294d597cdd5da6131e30afe
Diffstat (limited to 'linguistic/source/lngsvcmgr.hxx')
-rw-r--r--linguistic/source/lngsvcmgr.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/linguistic/source/lngsvcmgr.hxx b/linguistic/source/lngsvcmgr.hxx
index d28216cd5cc5..0eee0605eddd 100644
--- a/linguistic/source/lngsvcmgr.hxx
+++ b/linguistic/source/lngsvcmgr.hxx
@@ -32,7 +32,8 @@
#include <unotools/configitem.hxx>
#include <vcl/timer.hxx>
#include <vcl/idle.hxx>
-#include <boost/ptr_container/ptr_vector.hpp>
+#include <vector>
+#include <memory>
#include "linguistic/misc.hxx"
#include "defs.hxx"
@@ -101,7 +102,7 @@ class LngSvcMgr :
LngSvcMgrListenerHelper * pListenerHelper;
- typedef boost::ptr_vector< SvcInfo > SvcInfoArray;
+ typedef std::vector< std::unique_ptr<SvcInfo> > SvcInfoArray;
SvcInfoArray * pAvailSpellSvcs;
SvcInfoArray * pAvailGrammarSvcs;
SvcInfoArray * pAvailHyphSvcs;