From bb1b341c94837915f86eafa2360d0af0cd52efe3 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 26 Nov 2015 12:10:47 +0100 Subject: Avoid implicitly declared members of EDITENG_DLLPUBLIC class ...implicit definitions of which, under the MSVC ABI, would need to be emitted into every editeng .cxx that happens to include this file, but which would fail for the VclPtr pWin; member wherever vcl::Window happens to be incomplete. Change-Id: I0a1cc61af086f3a3235a995c34834bc131531b84 --- include/editeng/splwrap.hxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/editeng/splwrap.hxx') diff --git a/include/editeng/splwrap.hxx b/include/editeng/splwrap.hxx index 4f3d76240c79..bde5681f903a 100644 --- a/include/editeng/splwrap.hxx +++ b/include/editeng/splwrap.hxx @@ -71,6 +71,9 @@ private: EDITENG_DLLPRIVATE bool SpellNext(); // select next area bool FindSpellError(); // Check for errors (over areas) + SvxSpellWrapper(SvxSpellWrapper const &) = delete; + void operator =(SvxSpellWrapper const &) = delete; + public: SvxSpellWrapper( vcl::Window* pWn, css::uno::Reference< css::linguistic2::XSpellChecker1 > &xSpellChecker, -- cgit