diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-10 13:41:17 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-10 13:41:17 +0200 |
commit | 5e62f81c757beeb23ecd4b3b37b108601e01fea6 (patch) | |
tree | 4d705901815f7467e535c315fafbf2cd4239aff3 /sfx2 | |
parent | 336bc33a5a46e89ea35cefa75997edde2363c8fc (diff) |
Fix 3ae4264a0db7f725abc33779ec9b11a45e17e279's removal of pThis->
Change-Id: Ie856e04aa85bd3ff065548bd0a9efd5e5cd22b70
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/fileobj.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/appl/fileobj.cxx b/sfx2/source/appl/fileobj.cxx index 5068ccc44c87..761666173002 100644 --- a/sfx2/source/appl/fileobj.cxx +++ b/sfx2/source/appl/fileobj.cxx @@ -497,12 +497,12 @@ IMPL_LINK_NOARG( SvFileObject, LoadGrfReady_Impl ) return 0; } -IMPL_LINK( SvFileObject, DelMedium_Impl, SfxMediumRef*, pDelMed ) +IMPL_LINK( SvFileObject, DelMedium_Impl, SfxMediumRef*, deleteMedium ) { nPostUserEventId = 0; - assert(pDelMed == pDelMed); + assert(pDelMed == deleteMedium); pDelMed = NULL; - delete pDelMed; + delete deleteMedium; return 0; } |