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

Noel Grandin noel at peralex.com
Mon May 25 23:54:58 PDT 2015


 reportdesign/source/ui/report/ReportController.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2704d45a58b5a0f1cd8103d143f8c2059f70dfea
Author: Noel Grandin <noel at peralex.com>
Date:   Tue May 26 08:54:02 2015 +0200

    tdf#91577 - CRASH: when "Report Builder" closed
    
    audited commit 6d0c89123f353aed80d3a8a08ef5cd1ffaa1eea9
    "vclwidget: fix more places that should be wrapping in VclPtr"
    and fixed up the one place that needed it.
    
    Change-Id: Iedb56353e6a967367f38fa847efb950acc869a93

diff --git a/reportdesign/source/ui/report/ReportController.cxx b/reportdesign/source/ui/report/ReportController.cxx
index 486c271..d5dc72a 100644
--- a/reportdesign/source/ui/report/ReportController.cxx
+++ b/reportdesign/source/ui/report/ReportController.cxx
@@ -339,7 +339,7 @@ void OReportController::disposing()
     {
         SvtViewOptions aDlgOpt(E_WINDOW, OStringToOUString(m_pGroupsFloater->GetHelpId(), RTL_TEXTENCODING_UTF8));
         aDlgOpt.SetWindowState(OStringToOUString(m_pGroupsFloater->GetWindowState(WINDOWSTATE_MASK_ALL), RTL_TEXTENCODING_ASCII_US));
-        m_pGroupsFloater = NULL;
+        m_pGroupsFloater.disposeAndClear();
     }
 
     try


More information about the Libreoffice-commits mailing list