summaryrefslogtreecommitdiff
path: root/vcl/source/window/event.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/event.cxx')
-rw-r--r--vcl/source/window/event.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/source/window/event.cxx b/vcl/source/window/event.cxx
index bbfb606f7b93..7cf1a2f1aedb 100644
--- a/vcl/source/window/event.cxx
+++ b/vcl/source/window/event.cxx
@@ -50,10 +50,10 @@ void Window::NotifyAllChildren( DataChangedEvent& rDCEvt )
bool Window::PreNotify( NotifyEvent& rNEvt )
{
- ClipManager *clipMgr = ClipManager::GetInstance();
+ ClipManager *pClipMgr = ClipManager::GetInstance();
bool bDone = false;
- if ( mpWindowImpl->mpParent && !clipMgr->IsOverlapWindow( this ) )
+ if ( mpWindowImpl->mpParent && !pClipMgr->IsOverlapWindow( this ) )
bDone = mpWindowImpl->mpParent->PreNotify( rNEvt );
if ( !bDone )
@@ -93,7 +93,7 @@ bool Window::PreNotify( NotifyEvent& rNEvt )
bool Window::Notify( NotifyEvent& rNEvt )
{
- ClipManager *clipMgr = ClipManager::GetInstance();
+ ClipManager *pClipMgr = ClipManager::GetInstance();
bool nRet = false;
@@ -171,7 +171,7 @@ bool Window::Notify( NotifyEvent& rNEvt )
// if the parent also has dialog control activated, the parent takes over control
if ( (rNEvt.GetType() == EVENT_KEYINPUT) || (rNEvt.GetType() == EVENT_KEYUP) )
{
- if ( clipMgr->IsOverlapWindow( this ) ||
+ if ( pClipMgr->IsOverlapWindow( this ) ||
((getNonLayoutRealParent(this)->GetStyle() & (WB_DIALOGCONTROL | WB_NODIALOGCONTROL)) != WB_DIALOGCONTROL) )
{
nRet = ImplDlgCtrl( *rNEvt.GetKeyEvent(), rNEvt.GetType() == EVENT_KEYINPUT );
@@ -193,7 +193,7 @@ bool Window::Notify( NotifyEvent& rNEvt )
if ( !nRet )
{
- if ( mpWindowImpl->mpParent && !clipMgr->IsOverlapWindow( this ) )
+ if ( mpWindowImpl->mpParent && !pClipMgr->IsOverlapWindow( this ) )
nRet = mpWindowImpl->mpParent->Notify( rNEvt );
}