Remove obsolete _EXPORT macro not used under Win32.
This was a leftover from bad old Win16 days.
This commit is contained in:
@@ -75,10 +75,8 @@ wxEND_EVENT_TABLE()
|
||||
// function prototypes
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
LRESULT APIENTRY _EXPORT wxComboEditWndProc(HWND hWnd,
|
||||
UINT message,
|
||||
WPARAM wParam,
|
||||
LPARAM lParam);
|
||||
LRESULT APIENTRY
|
||||
wxComboEditWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// global vars
|
||||
@@ -125,10 +123,8 @@ bool ShouldForwardFromEditToCombo(UINT message)
|
||||
// wnd proc for subclassed edit control
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
LRESULT APIENTRY _EXPORT wxComboEditWndProc(HWND hWnd,
|
||||
UINT message,
|
||||
WPARAM wParam,
|
||||
LPARAM lParam)
|
||||
LRESULT APIENTRY
|
||||
wxComboEditWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
HWND hwndCombo = ::GetParent(hWnd);
|
||||
wxWindow *win = wxFindWinFromHandle((WXHWND)hwndCombo);
|
||||
|
Reference in New Issue
Block a user