summaryrefslogtreecommitdiff
path: root/include/linguistic
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-28 16:14:12 +0200
committerNoel Grandin <noel@peralex.com>2015-10-29 08:51:55 +0200
commit5d5c4686badbf67aa25b18701f25d90fa8b4e42a (patch)
tree39d10e1f40b12ee20c50d5eed313d46df054783d /include/linguistic
parentfbff75a64c7449aac85d640f67b1de147db35c3e (diff)
remove boost::noncopyable from /include
Change-Id: I9fa22b06fabf79043ebc68be7afebc6e810f4db1
Diffstat (limited to 'include/linguistic')
-rw-r--r--include/linguistic/spelldta.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linguistic/spelldta.hxx b/include/linguistic/spelldta.hxx
index 5e56574f09dd..5475afc9c5c3 100644
--- a/include/linguistic/spelldta.hxx
+++ b/include/linguistic/spelldta.hxx
@@ -26,7 +26,6 @@
#include <com/sun/star/linguistic2/XSearchableDictionaryList.hpp>
#include <cppuhelper/implbase.hxx>
#include <linguistic/lngdllapi.h>
-#include <boost/noncopyable.hpp>
namespace com { namespace sun { namespace star {
namespace linguistic2 {
@@ -64,7 +63,6 @@ class SpellAlternatives
css::linguistic2::XSpellAlternatives,
css::linguistic2::XSetSpellAlternatives
>
- , private ::boost::noncopyable
{
css::uno::Sequence< OUString > aAlt; // list of alternatives, may be empty.
OUString aWord;
@@ -76,6 +74,8 @@ public:
SpellAlternatives(const OUString &rWord, sal_Int16 nLang, sal_Int16 nFailureType,
const css::uno::Sequence< OUString > &rAlternatives );
virtual ~SpellAlternatives();
+ SpellAlternatives(const SpellAlternatives&) = delete;
+ SpellAlternatives& operator=( const SpellAlternatives& ) = delete;
// XSpellAlternatives
virtual OUString SAL_CALL getWord( ) throw (css::uno::RuntimeException, std::exception) override;