Opened 6 years ago

#11618 new Bug report

small bug for x64 build

Reported by: thegfw Owned by:
Priority: low Component: FileZilla Server
Keywords: Cc:
Component version: Operating system type: Windows
Operating system version:

Description

/trunk/source/Interface/StatusCtrl.cpp
r8791


void CStatusCtrl::DoStreamIn(int extraFlags)
{

EDITSTREAM es;
es.dwCookie = (DWORD)this; Pass a pointer to the CString to the callback function
es.pfnCallback = RichEditStreamInCallback;
Specify the pointer to the callback function.

StreamIn(extraFlags | SF_RTF, es); Perform the streaming

}


void CStatusCtrl::DoStreamIn(int extraFlags)
{

EDITSTREAM es;
es.dwCookie = (DWORD_PTR)this; Pass a pointer to the CString to the callback function
es.pfnCallback = RichEditStreamInCallback;
Specify the pointer to the callback function.

StreamIn(extraFlags | SF_RTF, es); Perform the streaming

}

Attachments (1)

x64_build.patch (13.3 KB ) - added by thegfw 6 years ago.
more change

Download all attachments as: .zip

Change History (1)

by thegfw, 6 years ago

Attachment: x64_build.patch added

more change

Note: See TracTickets for help on using tickets.