64-bit compile fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@55221 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -682,11 +682,15 @@ bool ScintillaWX::DestroySystemCaret() {
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
|
||||
long ScintillaWX::DefWndProc(unsigned int /*iMessage*/, unsigned long /*wParam*/, long /*lParam*/) {
|
||||
sptr_t ScintillaWX::DefWndProc(unsigned int /*iMessage*/,
|
||||
uptr_t /*wParam*/,
|
||||
sptr_t /*lParam*/) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
long ScintillaWX::WndProc(unsigned int iMessage, unsigned long wParam, long lParam) {
|
||||
sptr_t ScintillaWX::WndProc(unsigned int iMessage,
|
||||
uptr_t wParam,
|
||||
sptr_t lParam) {
|
||||
switch (iMessage) {
|
||||
case SCI_CALLTIPSHOW: {
|
||||
// NOTE: This is copied here from scintilla/src/ScintillaBase.cxx
|
||||
|
@@ -111,12 +111,12 @@ public:
|
||||
virtual void AddToPopUp(const char *label, int cmd = 0, bool enabled = true);
|
||||
virtual void ClaimSelection();
|
||||
|
||||
virtual long DefWndProc(unsigned int iMessage,
|
||||
unsigned long wParam,
|
||||
long lParam);
|
||||
virtual long WndProc(unsigned int iMessage,
|
||||
unsigned long wParam,
|
||||
long lParam);
|
||||
virtual sptr_t DefWndProc(unsigned int iMessage,
|
||||
uptr_t wParam,
|
||||
sptr_t lParam);
|
||||
virtual sptr_t WndProc(unsigned int iMessage,
|
||||
uptr_t wParam,
|
||||
sptr_t lParam);
|
||||
|
||||
virtual void NotifyChange();
|
||||
virtual void NotifyParent(SCNotification scn);
|
||||
|
Reference in New Issue
Block a user