]> git.saurik.com Git - wxWidgets.git/commitdiff
build fixes for wxUSE_VALIDATORS==0
authorPaul Cornett <paulcor@bullseye.com>
Tue, 3 Apr 2007 02:44:32 +0000 (02:44 +0000)
committerPaul Cornett <paulcor@bullseye.com>
Tue, 3 Apr 2007 02:44:32 +0000 (02:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45232 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/combog.cpp
src/mac/carbon/checkbox.cpp
src/mac/carbon/treectrl.cpp

index 8deece85894b5b94fee414730ff7fc1ddea6e638..29b9d21f9676c35de4842574caa98e61a2624697 100644 (file)
@@ -392,6 +392,7 @@ void wxGenericComboCtrl::SetCustomPaintWidth( int width )
             tc->RemoveEventHandler(m_textEvtHandler);
             delete m_textEvtHandler;
 
+#if wxUSE_VALIDATORS
             wxValidator* pValidator = tc->GetValidator();
             if ( pValidator )
             {
@@ -400,6 +401,7 @@ void wxGenericComboCtrl::SetCustomPaintWidth( int width )
                 delete pValidator;
             }
             else
+#endif
             {
                 CreateTextCtrl( tcCreateStyle, wxDefaultValidator );
             }
index c914add38baa45e1cba6b04de7a06e03d23ea05f..e43aaa6dbaf9d85650496a067e9d280f8925b0e7 100644 (file)
@@ -136,11 +136,13 @@ bool wxBitmapCheckBox::Create(wxWindow *parent,
     const wxPoint& pos,
     const wxSize& size,
     long style,
-    const wxValidator& validator,
+    const wxValidator& wxVALIDATOR_PARAM(validator),
     const wxString& name)
 {
     SetName(name);
+#if wxUSE_VALIDATORS
     SetValidator(validator);
+#endif
     m_windowStyle = style;
 
     if (parent)
index 164b37af75b61d62032609176fc6933a10e695d7..7977dabef97df4d009c33f977a0e40f99ad8b923 100644 (file)
@@ -29,14 +29,17 @@ wxTreeCtrl::wxTreeCtrl()
 
 bool wxTreeCtrl::Create(wxWindow *parent,
     wxWindowID id, const wxPoint& pos, const wxSize& size,
-    long style, const wxValidator& validator, const wxString& name)
+    long style, const wxValidator& wxVALIDATOR_PARAM(validator),
+    const wxString& name)
 {
     m_imageListNormal = NULL;
     m_imageListState = NULL;
     m_textCtrl = NULL;
 
     SetName(name);
+#if wxUSE_VALIDATORS
     SetValidator(validator);
+#endif
     SetParent(parent);
 
     m_windowStyle = style;