include: Fix a typo in a level of indirection in tom.idl.
The parameter for ITextPara::GetDuplicate should have two levels of indirection.
This commit is contained in:
parent
f86ace9067
commit
0120c1a582
|
@ -368,7 +368,7 @@ interface ITextFont : IDispatch
|
||||||
]
|
]
|
||||||
interface ITextPara : IDispatch
|
interface ITextPara : IDispatch
|
||||||
{
|
{
|
||||||
HRESULT GetDuplicate([retval, out]ITextPara *ppPara);
|
HRESULT GetDuplicate([retval, out]ITextPara **ppPara);
|
||||||
HRESULT SetDuplicate([in]ITextPara *pPara);
|
HRESULT SetDuplicate([in]ITextPara *pPara);
|
||||||
HRESULT CanChange([out]long *pB);
|
HRESULT CanChange([out]long *pB);
|
||||||
HRESULT IsEqual([in]ITextPara *pPara, [retval, out]long *pB);
|
HRESULT IsEqual([in]ITextPara *pPara, [retval, out]long *pB);
|
||||||
|
|
Loading…
Reference in New Issue