From 684e0b31ef682c2645a7f94fac51236a5abfead1 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sun, 17 Oct 2004 10:45:21 +0000 Subject: [PATCH] __WXMAC_OSBUILDTYPE__ selections are now only defined if they are TRUE git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29937 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/mac/private/print.h | 2 +- src/mac/carbon/listbox.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/mac/private/print.h b/include/wx/mac/private/print.h index 7052401ca6..150be6d99f 100644 --- a/include/wx/mac/private/print.h +++ b/include/wx/mac/private/print.h @@ -1,4 +1,4 @@ -#if __WXMAC_CLASSIC__ +#ifdef __WXMAC_CLASSIC__ #include "wx/mac/classic/private/print.h" #else #include "wx/mac/carbon/private/print.h" diff --git a/src/mac/carbon/listbox.cpp b/src/mac/carbon/listbox.cpp index 3a94f14a54..3ed2418065 100644 --- a/src/mac/carbon/listbox.cpp +++ b/src/mac/carbon/listbox.cpp @@ -27,7 +27,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControl) BEGIN_EVENT_TABLE(wxListBox, wxControl) -#if !__WXMAC_OSX__ +#ifndef __WXMAC_OSX__ EVT_SIZE( wxListBox::OnSize ) EVT_CHAR( wxListBox::OnChar ) #endif -- 2.45.2