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
// License: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
// License: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
-// ============================================================================
-// declarations
-// ============================================================================
-
-// ----------------------------------------------------------------------------
-// headers
-// ----------------------------------------------------------------------------
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
+#if wxUSE_SEARCHCTRL
+
+#include "wx/srchctrl.h"
+
#ifndef WX_PRECOMP
#include "wx/button.h"
#include "wx/dcclient.h"
#ifndef WX_PRECOMP
#include "wx/button.h"
#include "wx/dcclient.h"
#include "wx/dcmemory.h"
#endif //WX_PRECOMP
#include "wx/dcmemory.h"
#endif //WX_PRECOMP
-#if wxUSE_SEARCHCTRL
-
-#include "wx/srchctrl.h"
-
#if !wxUSE_NATIVE_SEARCH_CONTROL
#include "wx/image.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
// ----------------------------------------------------------------------------
// constants
m_text = new wxSearchTextCtrl(this, value, style & ~wxBORDER_MASK);
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);
m_searchButton = new wxSearchButton(this,wxEVT_COMMAND_SEARCHCTRL_SEARCH,m_searchBitmap);
m_cancelButton = new wxSearchButton(this,wxEVT_COMMAND_SEARCHCTRL_CANCEL,m_cancelBitmap);
+ bool hadMenu = (m_menu != NULL);
- bool hadMenu = (m_menu!=0);
m_menu = menu;
if ( m_menu && !hadMenu )
m_menu = menu;
if ( m_menu && !hadMenu )
bool result = wxSearchCtrlBase::SetFont(font);
if ( result && m_text )
{
bool result = wxSearchCtrlBase::SetFont(font);
if ( result && m_text )
{
- result &= m_text->SetFont(font);
+ result = m_text->SetFont(font);
}
RecalcBitmaps();
return result;
}
RecalcBitmaps();
return result;