ieframe: Only print the FIXMEs once for progress bar handling.

This commit is contained in:
André Hentschel 2011-08-10 23:00:52 +02:00 committed by Alexandre Julliard
parent ff8f6e8662
commit 72c121e797
1 changed files with 5 additions and 3 deletions

View File

@ -139,8 +139,9 @@ static HRESULT STDMETHODCALLTYPE taskbar_list_SetProgressValue(ITaskbarList4 *if
ULONGLONG ullCompleted,
ULONGLONG ullTotal)
{
FIXME("iface %p, hwnd %p, ullCompleted %s, ullTotal %s stub!\n", iface, hwnd,
wine_dbgstr_longlong(ullCompleted), wine_dbgstr_longlong(ullTotal));
static BOOL fixme_once;
if(!fixme_once++) FIXME("iface %p, hwnd %p, ullCompleted %s, ullTotal %s stub!\n", iface, hwnd,
wine_dbgstr_longlong(ullCompleted), wine_dbgstr_longlong(ullTotal));
return S_OK;
}
@ -149,7 +150,8 @@ static HRESULT STDMETHODCALLTYPE taskbar_list_SetProgressState(ITaskbarList4 *if
HWND hwnd,
TBPFLAG tbpFlags)
{
FIXME("iface %p, hwnd %p, flags %x stub!\n", iface, hwnd, tbpFlags);
static BOOL fixme_once;
if(!fixme_once++) FIXME("iface %p, hwnd %p, flags %x stub!\n", iface, hwnd, tbpFlags);
return S_OK;
}