From: Paul Cornett Date: Mon, 11 Dec 2006 18:33:58 +0000 (+0000) Subject: cleanup: X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/09d93215cf579df9f40870df7d0014a55705ec0d?ds=inline cleanup: wrap everything in #if wxUSE_SEARCHCTRL, implementation include comes first, parenthesize macro replacement containing operators, unused variable, use of pointer after delete, bizarre boolean expression git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43934 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/srchctlg.cpp b/src/generic/srchctlg.cpp index 45647bbf92..b09517beda 100644 --- a/src/generic/srchctlg.cpp +++ b/src/generic/srchctlg.cpp @@ -8,14 +8,6 @@ // License: wxWindows licence /////////////////////////////////////////////////////////////////////////////// -// ============================================================================ -// declarations -// ============================================================================ - -// ---------------------------------------------------------------------------- -// headers -// ---------------------------------------------------------------------------- - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -23,6 +15,10 @@ #pragma hdrstop #endif +#if wxUSE_SEARCHCTRL + +#include "wx/srchctrl.h" + #ifndef WX_PRECOMP #include "wx/button.h" #include "wx/dcclient.h" @@ -30,16 +26,11 @@ #include "wx/dcmemory.h" #endif //WX_PRECOMP -#if wxUSE_SEARCHCTRL - -#include "wx/srchctrl.h" - #if !wxUSE_NATIVE_SEARCH_CONTROL #include "wx/image.h" -#define WXMIN(a,b) (a)<(b)?(a):(b) -#define WXMAX(a,b) (a)>(b)?(a):(b) +#define WXMAX(a,b) ((a)>(b)?(a):(b)) // ---------------------------------------------------------------------------- // constants @@ -239,8 +230,6 @@ bool wxSearchCtrl::Create(wxWindow *parent, wxWindowID id, m_text = new wxSearchTextCtrl(this, value, style & ~wxBORDER_MASK); - wxSize sizeText = m_text->GetBestSize(); - m_searchButton = new wxSearchButton(this,wxEVT_COMMAND_SEARCHCTRL_SEARCH,m_searchBitmap); m_cancelButton = new wxSearchButton(this,wxEVT_COMMAND_SEARCHCTRL_CANCEL,m_cancelBitmap); @@ -276,8 +265,8 @@ void wxSearchCtrl::SetMenu( wxMenu* menu ) // no change return; } + bool hadMenu = (m_menu != NULL); delete m_menu; - bool hadMenu = (m_menu!=0); m_menu = menu; if ( m_menu && !hadMenu ) @@ -692,7 +681,7 @@ bool wxSearchCtrl::SetFont(const wxFont& font) bool result = wxSearchCtrlBase::SetFont(font); if ( result && m_text ) { - result &= m_text->SetFont(font); + result = m_text->SetFont(font); } RecalcBitmaps(); return result;