]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dlgcmn.cpp
fix for focus handling when deleting the items
[wxWidgets.git] / src / common / dlgcmn.cpp
index 235f5416da6d7ac55f0e0b66c4636164940afb42..5a442f914d82a536ad18132d75cfc51d4d0f3305 100644 (file)
@@ -43,6 +43,8 @@
 // wxDialogBase
 //--------------------------------------------------------------------------
 
+#if wxUSE_STATTEXT && wxUSE_TEXTCTRL
+
 wxSizer *wxDialogBase::CreateTextSizer( const wxString &message )
 {
     wxBoxSizer *box = new wxBoxSizer( wxVERTICAL );
@@ -86,6 +88,10 @@ wxSizer *wxDialogBase::CreateTextSizer( const wxString &message )
     return box;
 }
 
+#endif // wxUSE_STATTEXT && wxUSE_TEXTCTRL
+
+#if wxUSE_BUTTON
+
 wxSizer *wxDialogBase::CreateButtonSizer( long flags )
 {
     wxBoxSizer *box = new wxBoxSizer( wxHORIZONTAL );
@@ -174,3 +180,4 @@ wxSizer *wxDialogBase::CreateButtonSizer( long flags )
     return box;
 }
 
+#endif // wxUSE_BUTTON