Module: wine Branch: master Commit: 6fa7b49825dd5c0021b9972edc4ddfb553476563 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6fa7b49825dd5c0021b9972edc...
Author: Dylan Smith dylan.ah.smith@gmail.com Date: Mon Dec 15 04:31:33 2008 -0500
richedit: Missing capitalization on TxGetScrollBars.
---
dlls/riched20/tests/txtsrv.c | 6 +++--- include/textserv.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/dlls/riched20/tests/txtsrv.c b/dlls/riched20/tests/txtsrv.c index 3d47490..8d7fa74 100644 --- a/dlls/riched20/tests/txtsrv.c +++ b/dlls/riched20/tests/txtsrv.c @@ -349,11 +349,11 @@ static HRESULT WINAPI ITextHostImpl_TxGetMaxLength(ITextHost *iface, return E_NOTIMPL; }
-static HRESULT WINAPI ITextHostImpl_TxGetScrollbars(ITextHost *iface, +static HRESULT WINAPI ITextHostImpl_TxGetScrollBars(ITextHost *iface, DWORD *pdwScrollBar) { ITextHostTestImpl *This = (ITextHostTestImpl *)iface; - TRACECALL("Call to TxGetScrollbars(%p, pdwScrollBar=%p)\n", + TRACECALL("Call to TxGetScrollBars(%p, pdwScrollBar=%p)\n", This, pdwScrollBar); return E_NOTIMPL; } @@ -475,7 +475,7 @@ static ITextHostVtbl itextHostVtbl = { ITextHostImpl_TxGetSysColor, ITextHostImpl_TxGetBackStyle, ITextHostImpl_TxGetMaxLength, - ITextHostImpl_TxGetScrollbars, + ITextHostImpl_TxGetScrollBars, ITextHostImpl_TxGetPasswordChar, ITextHostImpl_TxGetAcceleratorPos, ITextHostImpl_TxGetExtent, diff --git a/include/textserv.h b/include/textserv.h index 977b742..e9ff4da 100644 --- a/include/textserv.h +++ b/include/textserv.h @@ -315,7 +315,7 @@ DECLARE_INTERFACE_(ITextHost,IUnknown) STDMETHOD(TxGetMaxLength)( THIS_ DWORD* plength) PURE;
- STDMETHOD(TxGetScrollbars)( THIS_ + STDMETHOD(TxGetScrollBars)( THIS_ DWORD* pdwScrollBar) PURE;
STDMETHOD(TxGetPasswordChar)( THIS_ @@ -386,7 +386,7 @@ DECLARE_INTERFACE_(ITextHost,IUnknown) #define ITextHost_TxGetSysColor(p,a) (p)->lpVtbl->TxGetSysColor(p,a) #define ITextHost_TxGetBackStyle(p,a) (p)->lpVtbl->TxGetBackStyle(p,a) #define ITextHost_TxGetMaxLength(p,a) (p)->lpVtbl->TxGetMaxLength(p,a) -#define ITextHost_TxGetScrollbars(p,a) (p)->lpVtbl->TxGetScrollbars(p,a) +#define ITextHost_TxGetScrollBars(p,a) (p)->lpVtbl->TxGetScrollBars(p,a) #define ITextHost_TxGetPasswordChar(p,a) (p)->lpVtbl->TxGetPasswordChar(p,a) #define ITextHost_TxGetAcceleratorPos(p,a) (p)->lpVtbl->TxGetAcceleratorPos(p,a) #define ITextHost_TxGetExtent(p,a) (p)->lpVtbl->TxGetExtent(p,a)