diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/ipclient.hxx | 5 |
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 ); |