http://bugs.winehq.com/show_bug.cgi?id=927
tony_lambregts@telusplanet.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW everconfirmed|0 |1
------- Additional Comments From tony_lambregts@telusplanet.net 2002-07-31 11:26 ------- This is non critical code, but probably not that bad a place to start developing wine. The following is extracted frome the current source code ./wine/dlls/comctl32/flatsb.c
/*********************************************************************** * FlatSB_SetScrollProp (COMCTL32.36) */ BOOL WINAPI FlatSB_SetScrollProp(HWND hwnd, UINT index, INT newValue, BOOL flag) { TRACE("[%04x] index=%u newValue=%d flag=%d\n", hwnd, index, newValue, flag); FIXME("stub\n"); return FALSE; }
/*********************************************************************** * From the Microsoft docs: * "If flat scroll bars haven't been initialized for the * window, the flat scroll bar APIs will defer to the corresponding * standard APIs. This allows the developer to turn flat scroll * bars on and off without having to write conditional code." * * So, if we just call the standard functions until we implement * the flat scroll bar functions, flat scroll bars will show up and * behave properly, as though they had simply not been setup to * have flat properties. * * Susan sfarley@codeweavers.com * */
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://bugs.winehq.com/show_bug.cgi?id=927. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.