diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-04-11 11:42:46 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-04-11 11:42:46 +0100 |
commit | fbdef593def24941db2a6123501277fe20b8b1d2 (patch) | |
tree | a1f42194fd8b8e64f2c22999b2a4b7014192a599 | |
parent | afc84f23b29ec0e08b34601c34e26f07beb110f8 (diff) |
More re-basing compile-time fixes; now we compile.
Change-Id: Id66f1009b6ec604548c325a036dae7e83cb78d9b
-rw-r--r-- | include/sfx2/dinfdlg.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/optdlg/calcoptionsdlg.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/dlg/brkdlg.cxx | 6 | ||||
-rw-r--r-- | starmath/source/ElementsDockingWindow.cxx | 2 | ||||
-rw-r--r-- | sw/source/ui/misc/srtdlg.cxx | 1 | ||||
-rw-r--r-- | sw/source/uibase/dbui/dbmgr.cxx | 2 | ||||
-rw-r--r-- | sw/source/uibase/dbui/dbui.cxx | 9 | ||||
-rw-r--r-- | sw/source/uibase/inc/dbui.hxx | 2 |
8 files changed, 13 insertions, 13 deletions
diff --git a/include/sfx2/dinfdlg.hxx b/include/sfx2/dinfdlg.hxx index 4590b9e4f222..3cd589333ec7 100644 --- a/include/sfx2/dinfdlg.hxx +++ b/include/sfx2/dinfdlg.hxx @@ -339,7 +339,6 @@ protected: virtual void RequestHelp(const HelpEvent& rEvt) SAL_OVERRIDE; public: CustomPropertiesDurationField(vcl::Window* pParent, WinBits nStyle, CustomPropertyLine* pLine); - virtual ~CustomPropertiesDurationField(); void SetDuration( const com::sun::star::util::Duration& rDuration ); const com::sun::star::util::Duration& GetDuration() const { return m_aDuration; } @@ -351,7 +350,6 @@ class CustomPropertiesEditButton : public PushButton public: CustomPropertiesEditButton(vcl::Window* pParent, WinBits nStyle, CustomPropertyLine* pLine); - virtual ~CustomPropertiesEditButton(); DECL_LINK(ClickHdl, void *); }; diff --git a/sc/source/ui/optdlg/calcoptionsdlg.cxx b/sc/source/ui/optdlg/calcoptionsdlg.cxx index 621e54d6f278..92d88f6471ff 100644 --- a/sc/source/ui/optdlg/calcoptionsdlg.cxx +++ b/sc/source/ui/optdlg/calcoptionsdlg.cxx @@ -116,8 +116,6 @@ ScCalcOptionsDialog::~ScCalcOptionsDialog() void ScCalcOptionsDialog::dispose() { - mpLbOptionEdit.clear(); - mpUseOpenCL.clear(); mpSpinButton.clear(); mpEditField.clear(); diff --git a/sd/source/ui/dlg/brkdlg.cxx b/sd/source/ui/dlg/brkdlg.cxx index 7a961dbe1379..196675e49121 100644 --- a/sd/source/ui/dlg/brkdlg.cxx +++ b/sd/source/ui/dlg/brkdlg.cxx @@ -72,8 +72,10 @@ BreakDlg::~BreakDlg() void BreakDlg::dispose() { - mpProgress.disposeAndClear(); - pProgrInfo.disposeAndClear(); + delete mpProgress; + mpProgress = NULL; + delete pProgrInfo; + pProgrInfo = NULL; m_pFiObjInfo.clear(); m_pFiActInfo.clear(); m_pFiInsInfo.clear(); diff --git a/starmath/source/ElementsDockingWindow.cxx b/starmath/source/ElementsDockingWindow.cxx index 4ead68629757..47e3afcebe59 100644 --- a/starmath/source/ElementsDockingWindow.cxx +++ b/starmath/source/ElementsDockingWindow.cxx @@ -244,7 +244,7 @@ SmElementsControl::~SmElementsControl() void SmElementsControl::dispose() { mpDocShell->DoClose(); - mpScroll.disposeAndClear(); + mxScroll.disposeAndClear(); Control::dispose(); } diff --git a/sw/source/ui/misc/srtdlg.cxx b/sw/source/ui/misc/srtdlg.cxx index 03789e013085..bb7bcd01222f 100644 --- a/sw/source/ui/misc/srtdlg.cxx +++ b/sw/source/ui/misc/srtdlg.cxx @@ -413,7 +413,6 @@ IMPL_LINK_NOARG(SwSortDlg, DelimCharHdl) IMPL_LINK( SwSortDlg, CheckHdl, void *, pControl ) { if( pControl == m_pRowRB.get()) -r { m_pColLbl->SetText(aColTxt); m_pColEdt1->SetMax(nY); diff --git a/sw/source/uibase/dbui/dbmgr.cxx b/sw/source/uibase/dbui/dbmgr.cxx index f8ef22bede9a..f5fd204f8bd7 100644 --- a/sw/source/uibase/dbui/dbmgr.cxx +++ b/sw/source/uibase/dbui/dbmgr.cxx @@ -943,7 +943,7 @@ bool SwDBManager::MergeMailFiles(SwWrtShell* pSourceShell, bool bPageStylesWithHeaderFooter = false; vcl::Window *pSourceWindow = 0; - VclPtr<CancelableModelessDialog> pProgressDlg; + VclPtr<CancelableDialog> pProgressDlg; if (!IsMergeSilent()) { pSourceWindow = &pSourceShell->GetView().GetEditWin(); diff --git a/sw/source/uibase/dbui/dbui.cxx b/sw/source/uibase/dbui/dbui.cxx index c4112ee0bac8..8e44685b868f 100644 --- a/sw/source/uibase/dbui/dbui.cxx +++ b/sw/source/uibase/dbui/dbui.cxx @@ -53,7 +53,8 @@ void PrintMonitor::dispose() m_pPrinting.clear(); m_pPrinter.clear(); m_pPrintInfo.clear(); - CancelableModelessDialog::dispose(); + + CancelableDialog::dispose(); } // Progress Indicator for Creation of personalized Mail Merge documents: @@ -80,7 +81,8 @@ void CreateMonitor::dispose() { m_pCancelButton.clear(); m_pCounting.clear(); - CancelableModelessDialog::dispose(); + + CancelableDialog::dispose(); } void CreateMonitor::UpdateCountingText() @@ -121,7 +123,8 @@ void CancelableDialog::dispose() { EndDialog( 0 ); m_pCancelButton.clear(); - ModelessDialog::dispose(); + + Dialog::dispose(); } void CancelableDialog::SetCancelHdl( const Link& rLink ) diff --git a/sw/source/uibase/inc/dbui.hxx b/sw/source/uibase/inc/dbui.hxx index 00f1320ea75a..879da6302939 100644 --- a/sw/source/uibase/inc/dbui.hxx +++ b/sw/source/uibase/inc/dbui.hxx @@ -39,7 +39,7 @@ protected: using Dialog::StartExecuteModal; public: - virtual ~CancelableModelessDialog(); + virtual ~CancelableDialog(); virtual void dispose() SAL_OVERRIDE; void SetCancelHdl( const Link& rLink ); |