From d91c632a9ae70bbec81fcb5882a63a239775b9e9 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Wed, 17 Jun 2009 21:44:19 +0000 Subject: [PATCH] Corrected version test git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@61101 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/combobox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mac/carbon/combobox.cpp b/src/mac/carbon/combobox.cpp index 35de671962..f1a1aef0b3 100644 --- a/src/mac/carbon/combobox.cpp +++ b/src/mac/carbon/combobox.cpp @@ -155,7 +155,7 @@ protected: void OnFocus( wxFocusEvent& event ) { // Unfortunately the fix below completely disables the combobox on Mac OS 10.4 (and presumably below) - if (UMAGetSystemVersion() <= 0x1040) + if (UMAGetSystemVersion() < 0x1050) { event.Skip(); return;