if wxUSE_XXX fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32239 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ryan Norton 2005-02-20 09:33:04 +00:00
parent a6900d1083
commit 16c81607bf
8 changed files with 33 additions and 0 deletions

View File

@ -10,6 +10,9 @@
/////////////////////////////////////////////////////////////////////////////
#include "wx/wxprec.h"
#if wxUSE_BMPBUTTON
#ifndef WX_PRECOMP
#include "wx/defs.h"
#include "wx/bmpbuttn.h"
@ -66,3 +69,4 @@ void wxBitmapButton::Cocoa_wxNSButtonAction(void)
Command(event);
}
#endif

View File

@ -10,6 +10,9 @@
/////////////////////////////////////////////////////////////////////////////
#include "wx/wxprec.h"
#if wxUSE_CHECKBOX
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/app.h"
@ -133,3 +136,4 @@ void wxCheckBox::Cocoa_wxNSButtonAction(void)
Command(event);
}
#endif

View File

@ -10,6 +10,9 @@
/////////////////////////////////////////////////////////////////////////////
#include "wx/wxprec.h"
#if wxUSE_CHECKLISTBOX
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/app.h"
@ -65,3 +68,4 @@ void wxCheckListBox::Check(size_t item, bool check)
{
}
#endif

View File

@ -10,6 +10,9 @@
/////////////////////////////////////////////////////////////////////////////
#include "wx/wxprec.h"
#if wxUSE_CHOICE
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/app.h"
@ -240,3 +243,4 @@ void wxChoice::SetSelection(int n)
[(NSPopUpButton*)m_cocoaNSView selectItemAtIndex:n];
}
#endif

View File

@ -10,6 +10,9 @@
/////////////////////////////////////////////////////////////////////////////
#include "wx/wxprec.h"
#if wxUSE_LISTBOX
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/app.h"
@ -280,3 +283,4 @@ wxClientData* wxListBox::DoGetItemClientObject(int n) const
return (wxClientData*) m_itemClientData[n];
}
#endif

View File

@ -10,6 +10,9 @@
/////////////////////////////////////////////////////////////////////////////
#include "wx/wxprec.h"
#if wxUSE_MDI
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/mdi.h"
@ -333,3 +336,4 @@ bool wxMDIClientWindow::CreateClient( wxMDIParentFrame *parent, long style)
return false;
}
#endif

View File

@ -10,6 +10,9 @@
/////////////////////////////////////////////////////////////////////////////
#include "wx/wxprec.h"
#if wxUSE_RADIOBOX
#ifndef WX_PRECOMP
#include "wx/app.h"
#include "wx/radiobox.h"
@ -112,3 +115,5 @@ wxSize wxRadioBox::DoGetBestSize() const
return wxSize(50,50);
}
#endif

View File

@ -10,6 +10,9 @@
/////////////////////////////////////////////////////////////////////////////
#include "wx/wxprec.h"
#if wxUSE_RADIOBTN
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/app.h"
@ -158,3 +161,4 @@ void wxRadioButton::Cocoa_wxNSButtonAction(void)
Command(event);
}
#endif