diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-26 12:10:47 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-26 12:15:25 +0100 |
commit | bb1b341c94837915f86eafa2360d0af0cd52efe3 (patch) | |
tree | 3c18c5da1327719662bf6879380670f2748d3563 /include | |
parent | 80735fcbb0503ff1de198d1d9936fed9f5ae77a2 (diff) |
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<vcl::Window> pWin;
member wherever vcl::Window happens to be incomplete.
Change-Id: I0a1cc61af086f3a3235a995c34834bc131531b84
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/splwrap.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
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, |