Kaydet (Commit) bb1b341c authored tarafından Stephan Bergmann's avatar Stephan Bergmann

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
üst 80735fcb
......@@ -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,
......
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