Kaydet (Commit) 5e62f81c authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix 3ae4264a's removal of pThis->

Change-Id: Ie856e04aa85bd3ff065548bd0a9efd5e5cd22b70
üst 336bc33a
...@@ -497,12 +497,12 @@ IMPL_LINK_NOARG( SvFileObject, LoadGrfReady_Impl ) ...@@ -497,12 +497,12 @@ IMPL_LINK_NOARG( SvFileObject, LoadGrfReady_Impl )
return 0; return 0;
} }
IMPL_LINK( SvFileObject, DelMedium_Impl, SfxMediumRef*, pDelMed ) IMPL_LINK( SvFileObject, DelMedium_Impl, SfxMediumRef*, deleteMedium )
{ {
nPostUserEventId = 0; nPostUserEventId = 0;
assert(pDelMed == pDelMed); assert(pDelMed == deleteMedium);
pDelMed = NULL; pDelMed = NULL;
delete pDelMed; delete deleteMedium;
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment