diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-03-31 14:22:00 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-03-31 20:08:54 +0200 |
commit | 5db69fcd9d236756c6588cb327510679cd41e9bf (patch) | |
tree | 736621d0a578db710c1ff55f546d9bd68ddbafe3 /sw/source/uibase/uiview | |
parent | 41b72adab4da7ad793e60a6959e48a8dd42dbde4 (diff) |
sw: prefix members of SwOleClient
Change-Id: I60fe718c489fc47d667534560241a8b3eb5f20a6
Diffstat (limited to 'sw/source/uibase/uiview')
-rw-r--r-- | sw/source/uibase/uiview/swcli.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sw/source/uibase/uiview/swcli.cxx b/sw/source/uibase/uiview/swcli.cxx index f47b0117309e..5ce19ed798a2 100644 --- a/sw/source/uibase/uiview/swcli.cxx +++ b/sw/source/uibase/uiview/swcli.cxx @@ -32,9 +32,10 @@ using namespace com::sun::star; -SwOleClient::SwOleClient( SwView *pView, SwEditWin *pWin, const svt::EmbeddedObjectRef& xObj ) : - SfxInPlaceClient( pView, pWin, xObj.GetViewAspect() ), bInDoVerb( false ), - bOldCheckForOLEInCaption( pView->GetWrtShell().IsCheckForOLEInCaption() ) +SwOleClient::SwOleClient(SwView *pView, SwEditWin *pWin, const svt::EmbeddedObjectRef& xObj) + : SfxInPlaceClient( pView, pWin, xObj.GetViewAspect() ) + , m_IsInDoVerb(false) + , m_IsOldCheckForOLEInCaption(pView->GetWrtShell().IsCheckForOLEInCaption()) { SetObject( xObj.GetObject() ); } @@ -93,7 +94,7 @@ void SwOleClient::ObjectAreaChanged() void SwOleClient::ViewChanged() { - if ( bInDoVerb ) + if (m_IsInDoVerb) return; if ( GetAspect() == embed::Aspects::MSOLE_ICON ) |