From f8c4482ee6a7de8bc0505f57879e8d8790fc2b79 Mon Sep 17 00:00:00 2001 From: Austin English Date: Wed, 22 Oct 2008 10:57:27 -0500 Subject: [PATCH] riched20: quiet a noisy fixme --- dlls/riched20/richole.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/dlls/riched20/richole.c b/dlls/riched20/richole.c index f79a8cc..a4e8ec7 100644 --- a/dlls/riched20/richole.c +++ b/dlls/riched20/richole.c @@ -468,8 +468,12 @@ ITextDocument_fnFreeze(ITextDocument* me, long* pCount) static HRESULT WINAPI ITextDocument_fnUnfreeze(ITextDocument* me, long* pCount) { + static int quietfixme = 0; IRichEditOleImpl *This = impl_from_ITextDocument(me); - FIXME("stub %p\n",This); + if (quietfixme == 0) { + FIXME("stub %p\n",This); + quietfixme = 1; + } return E_NOTIMPL; } -- 1.5.4.3