From 26c7e4acdfbedc931f3c98276ea239545cf21d29 Mon Sep 17 00:00:00 2001 From: Austin English Date: Wed, 22 Oct 2008 10:55:33 -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 0b7ad95..f79a8cc 100644 --- a/dlls/riched20/richole.c +++ b/dlls/riched20/richole.c @@ -492,8 +492,12 @@ ITextDocument_fnEndEditCollection(ITextDocument* me) static HRESULT WINAPI ITextDocument_fnUndo(ITextDocument* me, long Count, long* prop) { + 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