From 43ae432b7432b7700097cd4e7556c8a10104d5f9 Mon Sep 17 00:00:00 2001 From: Austin English Date: Wed, 22 Oct 2008 10:53:20 -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 0f401bc..0b7ad95 100644 --- a/dlls/riched20/richole.c +++ b/dlls/riched20/richole.c @@ -456,8 +456,12 @@ ITextDocument_fnSave(ITextDocument* me, VARIANT* pVar, long Flags, static HRESULT WINAPI ITextDocument_fnFreeze(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