projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Copy generic images when building the documentation too.
[wxWidgets.git]
/
src
/
os2
/
textctrl.cpp
diff --git
a/src/os2/textctrl.cpp
b/src/os2/textctrl.cpp
index 1c7014d733d23ba0c6b57be535ba6966ee61b6a6..3be381a95f154c62551524b43d0bb9327f2a8698 100644
(file)
--- a/
src/os2/textctrl.cpp
+++ b/
src/os2/textctrl.cpp
@@
-55,8
+55,6
@@
// event tables and other macros
// ----------------------------------------------------------------------------
// event tables and other macros
// ----------------------------------------------------------------------------
-IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl, wxTextCtrlBase)
-
BEGIN_EVENT_TABLE(wxTextCtrl, wxTextCtrlBase)
EVT_CHAR(wxTextCtrl::OnChar)
EVT_DROP_FILES(wxTextCtrl::OnDropFiles)
BEGIN_EVENT_TABLE(wxTextCtrl, wxTextCtrlBase)
EVT_CHAR(wxTextCtrl::OnChar)
EVT_DROP_FILES(wxTextCtrl::OnDropFiles)
@@
-718,7
+716,7
@@
void wxTextCtrl::MarkDirty()
::WinSendMsg(GetHwnd(), MLM_SETCHANGED, MPFROMLONG(TRUE), 0);
else
// EM controls do not have a SETCHANGED, what can we do??
::WinSendMsg(GetHwnd(), MLM_SETCHANGED, MPFROMLONG(TRUE), 0);
else
// EM controls do not have a SETCHANGED, what can we do??
- wxFAIL_MSG(
_
T("not implemented") );
+ wxFAIL_MSG(
wx
T("not implemented") );
}
//
}
//
@@
-1049,7
+1047,7
@@
void wxTextCtrl::OnChar(
wxCommandEvent vEvent(wxEVT_COMMAND_TEXT_ENTER, m_windowId);
vEvent.SetEventObject(this);
wxCommandEvent vEvent(wxEVT_COMMAND_TEXT_ENTER, m_windowId);
vEvent.SetEventObject(this);
- if (
GetEventHandler()->Process
Event(vEvent))
+ if (
HandleWindow
Event(vEvent))
return;
}
//else: multiline controls need Enter for themselves
return;
}
//else: multiline controls need Enter for themselves
@@
-1071,7
+1069,7
@@
void wxTextCtrl::OnChar(
vEventNav.SetWindowChange(false);
vEventNav.SetEventObject(this);
vEventNav.SetWindowChange(false);
vEventNav.SetEventObject(this);
- if (
GetEventHandler()->Process
Event(vEventNav) )
+ if (
HandleWindow
Event(vEventNav) )
return;
}
break;
return;
}
break;
@@
-1095,7
+1093,7
@@
bool wxTextCtrl::OS2Command(
);
vEvent.SetEventObject(this);
);
vEvent.SetEventObject(this);
-
GetEventHandler()->Process
Event(vEvent);
+
HandleWindow
Event(vEvent);
}
break;
}
break;