added spinctrl to be ignored when clicked (otherwise its siblings on the same window position will not get the clicks)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15456 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2002-05-08 23:30:22 +00:00
parent 7cfebe05f0
commit 4ac219f63d
2 changed files with 4 additions and 2 deletions

View File

@ -35,6 +35,7 @@
#include "wx/tooltip.h"
#include "wx/statusbr.h"
#include "wx/menuitem.h"
#include "wx/spinctrl.h"
#include "wx/log.h"
#if wxUSE_CARET
@ -1397,7 +1398,7 @@ bool wxWindowMac::MacDispatchMouseEvent(wxMouseEvent& event)
return FALSE;
if ( IsKindOf( CLASSINFO ( wxStaticBox ) ) )
if ( IsKindOf( CLASSINFO ( wxStaticBox ) ) || IsKindOf( CLASSINFO( wxSpinCtrl ) ))
return FALSE ;
WindowRef window = (WindowRef) MacGetRootWindow() ;

View File

@ -35,6 +35,7 @@
#include "wx/tooltip.h"
#include "wx/statusbr.h"
#include "wx/menuitem.h"
#include "wx/spinctrl.h"
#include "wx/log.h"
#if wxUSE_CARET
@ -1397,7 +1398,7 @@ bool wxWindowMac::MacDispatchMouseEvent(wxMouseEvent& event)
return FALSE;
if ( IsKindOf( CLASSINFO ( wxStaticBox ) ) )
if ( IsKindOf( CLASSINFO ( wxStaticBox ) ) || IsKindOf( CLASSINFO( wxSpinCtrl ) ))
return FALSE ;
WindowRef window = (WindowRef) MacGetRootWindow() ;