Kaydet (Commit) 5411d0b8 authored tarafından Kurt Zenker's avatar Kurt Zenker

INTEGRATION: CWS calc45 (1.29.208); FILE MERGED

2007/11/19 14:23:19 tbe 1.29.208.1: #i83551# Bad focus behaviour in number formatter dialog
üst c58ad393
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* *
* $RCSfile: numfmt.cxx,v $ * $RCSfile: numfmt.cxx,v $
* *
* $Revision: 1.29 $ * $Revision: 1.30 $
* *
* last change: $Author: hr $ $Date: 2007-06-27 17:22:21 $ * last change: $Author: kz $ $Date: 2007-12-12 13:25:03 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
...@@ -1867,7 +1867,14 @@ long SvxNumberFormatTabPage::PreNotify( NotifyEvent& rNEvt ) ...@@ -1867,7 +1867,14 @@ long SvxNumberFormatTabPage::PreNotify( NotifyEvent& rNEvt )
{ {
if(rNEvt.GetType()==EVENT_LOSEFOCUS) if(rNEvt.GetType()==EVENT_LOSEFOCUS)
{ {
pLastActivWindow=rNEvt.GetWindow(); if ( rNEvt.GetWindow() == dynamic_cast< Window* >( &aEdComment ) && !aEdComment.IsVisible() )
{
pLastActivWindow = NULL;
}
else
{
pLastActivWindow = rNEvt.GetWindow();
}
} }
return SfxTabPage::PreNotify( rNEvt ); return SfxTabPage::PreNotify( rNEvt );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment