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
}
more change