diff options
author | Pascal Junck <pjunck@openoffice.org> | 2004-10-22 11:44:47 +0000 |
---|---|---|
committer | Pascal Junck <pjunck@openoffice.org> | 2004-10-22 11:44:47 +0000 |
commit | 9feefd15206fbd78e7fcabbc3d4f5c9a3b254772 (patch) | |
tree | 685305302ebb30687446948ffa3a026763e3a203 /sfx2 | |
parent | 834405ef868292d95ad3a0f28765d365a9734e8b (diff) |
INTEGRATION: CWS dba17 (1.17.84); FILE MERGED
2004/09/27 10:00:53 fs 1.17.84.1: #i34249# (approved by mba) SetActiveFrame( NULL ) when losing the focus
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/basedlgs.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sfx2/source/dialog/basedlgs.cxx b/sfx2/source/dialog/basedlgs.cxx index 242d497b2272..764bf1d3668c 100644 --- a/sfx2/source/dialog/basedlgs.cxx +++ b/sfx2/source/dialog/basedlgs.cxx @@ -2,9 +2,9 @@ * * $RCSfile: basedlgs.cxx,v $ * - * $Revision: 1.17 $ + * $Revision: 1.18 $ * - * last change: $Author: obo $ $Date: 2004-07-05 14:46:12 $ + * last change: $Author: pjunck $ $Date: 2004-10-22 12:44:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -576,7 +576,10 @@ long SfxFloatingWindow::Notify( NotifyEvent& rEvt ) else if ( rEvt.GetType() == EVENT_LOSEFOCUS ) { if ( !HasChildPathFocus() ) + { + pBindings->SetActiveFrame( NULL ); pImp->pMgr->Deactivate_Impl(); + } } else if( rEvt.GetType() == EVENT_KEYINPUT ) { |