include/editeng/splwrap.hxx |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit bb1b341c94837915f86eafa2360d0af0cd52efe3
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Thu Nov 26 12:10:47 2015 +0100

    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

diff --git a/include/editeng/splwrap.hxx b/include/editeng/splwrap.hxx
index 4f3d762..bde5681 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,
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to