mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
dwrite: Stub SetIncrementalTabStop with S_OK.
Signed-off-by: Lucian Poston <lucian.poston@gmail.com> Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
fdb2eedd9e
commit
d00f9bce6c
1 changed files with 2 additions and 2 deletions
|
@ -4263,7 +4263,7 @@ static HRESULT WINAPI dwritetextformat_layout_SetIncrementalTabStop(IDWriteTextF
|
||||||
{
|
{
|
||||||
struct dwrite_textlayout *This = impl_layout_from_IDWriteTextFormat1(iface);
|
struct dwrite_textlayout *This = impl_layout_from_IDWriteTextFormat1(iface);
|
||||||
FIXME("(%p)->(%f): stub\n", This, tabstop);
|
FIXME("(%p)->(%f): stub\n", This, tabstop);
|
||||||
return E_NOTIMPL;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI dwritetextformat_layout_SetTrimming(IDWriteTextFormat1 *iface, DWRITE_TRIMMING const *trimming,
|
static HRESULT WINAPI dwritetextformat_layout_SetTrimming(IDWriteTextFormat1 *iface, DWRITE_TRIMMING const *trimming,
|
||||||
|
@ -5272,7 +5272,7 @@ static HRESULT WINAPI dwritetextformat_SetIncrementalTabStop(IDWriteTextFormat2
|
||||||
{
|
{
|
||||||
struct dwrite_textformat *This = impl_from_IDWriteTextFormat2(iface);
|
struct dwrite_textformat *This = impl_from_IDWriteTextFormat2(iface);
|
||||||
FIXME("(%p)->(%f): stub\n", This, tabstop);
|
FIXME("(%p)->(%f): stub\n", This, tabstop);
|
||||||
return E_NOTIMPL;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI dwritetextformat_SetTrimming(IDWriteTextFormat2 *iface, DWRITE_TRIMMING const *trimming,
|
static HRESULT WINAPI dwritetextformat_SetTrimming(IDWriteTextFormat2 *iface, DWRITE_TRIMMING const *trimming,
|
||||||
|
|
Loading…
Reference in a new issue