[Libreoffice-commits] core.git: include/sfx2

Noel Grandin noel.grandin at collabora.co.uk
Mon Jan 23 07:29:40 UTC 2017


 include/sfx2/ipclient.hxx |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit c3199d1d58957a421d68ffbf6a63666aac755a51
Author: Noel Grandin <noel.grandin at collabora.co.uk>
Date:   Mon Jan 23 09:28:26 2017 +0200

    fix windows build
    
    Change-Id: Ie32847e22965950d4b2a0e53ccab625a00a6589c

diff --git a/include/sfx2/ipclient.hxx b/include/sfx2/ipclient.hxx
index 23ec5e4..1ab9f4d 100644
--- a/include/sfx2/ipclient.hxx
+++ b/include/sfx2/ipclient.hxx
@@ -59,8 +59,11 @@ public:
                         SfxInPlaceClient( SfxViewShell* pViewShell, vcl::Window* pDraw, sal_Int64 nAspect );
     virtual             ~SfxInPlaceClient();
 
+    SfxInPlaceClient(const SfxInPlaceClient &) = delete;
+    SfxInPlaceClient& operator=(const SfxInPlaceClient &) = delete;
+
     SfxViewShell*       GetViewShell() const { return m_pViewSh; }
-    vcl::Window*             GetEditWin() const { return m_pEditWin; }
+    vcl::Window*        GetEditWin() const { return m_pEditWin; }
     const css::uno::Reference < css::embed::XEmbeddedObject >& GetObject() const;
     void                SetObject( const css::uno::Reference < css::embed::XEmbeddedObject >& rObject );
     void                SetObjectState( sal_Int32 );


More information about the Libreoffice-commits mailing list