summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-01-23 09:28:26 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-01-23 09:29:05 +0200
commitc3199d1d58957a421d68ffbf6a63666aac755a51 (patch)
tree5ef8a55441535cce2fdac60238bc2b027905606f /include
parentdd891ec422fb35eada219ca7adddbd60d69f1fb7 (diff)
fix windows build
Change-Id: Ie32847e22965950d4b2a0e53ccab625a00a6589c
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/ipclient.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/sfx2/ipclient.hxx b/include/sfx2/ipclient.hxx
index 23ec5e412d77..1ab9f4df89fd 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 );