mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2026-08-17 08:53:06 +08:00
Having this line is not useful at all as it doesn't contain any information and shouldn't be filled in the future as git-shortlog can provide the information about people who changed the given file more more reliably than consulting the comments in any case. Keep the non-blank lines for historical purposes.
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/common/srchcmn.cpp
|
|
// Purpose: common (to all ports) bits of wxSearchCtrl
|
|
// Author: Robin Dunn
|
|
// Created: 19-Dec-2006
|
|
// Copyright: (c) wxWidgets team
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ============================================================================
|
|
// declarations
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
#if wxUSE_SEARCHCTRL
|
|
|
|
#include "wx/srchctrl.h"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#endif
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
const char wxSearchCtrlNameStr[] = "searchCtrl";
|
|
|
|
wxDEFINE_EVENT(wxEVT_SEARCH_CANCEL, wxCommandEvent);
|
|
wxDEFINE_EVENT(wxEVT_SEARCH, wxCommandEvent);
|
|
|
|
|
|
#endif // wxUSE_SEARCHCTRL
|