diff options
author | Ingrid Halama <iha@openoffice.org> | 2003-12-04 15:34:19 +0000 |
---|---|---|
committer | Ingrid Halama <iha@openoffice.org> | 2003-12-04 15:34:19 +0000 |
commit | e7a365a6463d744e923c224569ba932d1de4c38f (patch) | |
tree | 78e663f66a72a869e60155d71aedf0bbb40415b4 /chart2/source/controller/main/ChartController.cxx | |
parent | ba0db52c0c9690115db6e83ff579db880362c69a (diff) |
change destruction order (crash after edit title)
Diffstat (limited to 'chart2/source/controller/main/ChartController.cxx')
-rw-r--r-- | chart2/source/controller/main/ChartController.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/controller/main/ChartController.cxx b/chart2/source/controller/main/ChartController.cxx index abf147078210..7fd2fce1edb7 100644 --- a/chart2/source/controller/main/ChartController.cxx +++ b/chart2/source/controller/main/ChartController.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ChartController.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: iha $ $Date: 2003-11-17 19:16:29 $ + * last change: $Author: iha $ $Date: 2003-12-04 16:34:19 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -481,8 +481,8 @@ void SAL_CALL ChartController if( m_pDrawViewWrapper ) m_pDrawViewWrapper->SetMarkHdlHidden(TRUE); - delete m_pChartView; m_pChartView = NULL; DELETEZ( m_pDrawViewWrapper ); + delete m_pChartView; m_pChartView = NULL; } sal_Bool SAL_CALL ChartController |