From 4b7e8e73a4d0e4128122eacc89fcb909de0bfc03 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Fri, 1 Dec 2006 15:02:40 +0000 Subject: [PATCH] ole32: The advise sink for the data cache should be primed with the passed in aspects value, not an arbitrarily selected value. --- dlls/ole32/datacache.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dlls/ole32/datacache.c b/dlls/ole32/datacache.c index 99fd0e83615..6ab418703cf 100644 --- a/dlls/ole32/datacache.c +++ b/dlls/ole32/datacache.c @@ -1503,9 +1503,7 @@ static HRESULT WINAPI DataCache_SetAdvise( */ if (advf & ADVF_PRIMEFIRST) { - DataCache_FireOnViewChange(this, - DVASPECT_CONTENT, - -1); + DataCache_FireOnViewChange(this, aspects, -1); } return S_OK;