[Libreoffice-commits] core.git: sfx2/source

Stephan Bergmann sbergman at redhat.com
Sun May 10 04:41:55 PDT 2015


 sfx2/source/appl/fileobj.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 5e62f81c757beeb23ecd4b3b37b108601e01fea6
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Sun May 10 13:41:17 2015 +0200

    Fix 3ae4264a0db7f725abc33779ec9b11a45e17e279's removal of pThis->
    
    Change-Id: Ie856e04aa85bd3ff065548bd0a9efd5e5cd22b70

diff --git a/sfx2/source/appl/fileobj.cxx b/sfx2/source/appl/fileobj.cxx
index 5068ccc..7616661 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;
 }
 


More information about the Libreoffice-commits mailing list