Module: wine Branch: master Commit: 0120c1a58215883d07e2c278876abb17ae357072 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0120c1a58215883d07e2c27887...
Author: Rob Shearman rob@codeweavers.com Date: Mon Apr 14 10:55:51 2008 +0100
include: Fix a typo in a level of indirection in tom.idl.
The parameter for ITextPara::GetDuplicate should have two levels of indirection.
---
include/tom.idl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/tom.idl b/include/tom.idl index f4dd2f0..28a71a7 100644 --- a/include/tom.idl +++ b/include/tom.idl @@ -368,7 +368,7 @@ interface ITextFont : IDispatch ] interface ITextPara : IDispatch { - HRESULT GetDuplicate([retval, out]ITextPara *ppPara); + HRESULT GetDuplicate([retval, out]ITextPara **ppPara); HRESULT SetDuplicate([in]ITextPara *pPara); HRESULT CanChange([out]long *pB); HRESULT IsEqual([in]ITextPara *pPara, [retval, out]long *pB);