summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/browser/brwview.cxx
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2001-04-03 11:07:30 +0000
committerFrank Schönheit <fs@openoffice.org>2001-04-03 11:07:30 +0000
commitd3760163d909423d0ff386b03348d34efa6472c8 (patch)
tree39149aea1f6b9c667b9e3f7161bd4bf7bb83d42a /dbaccess/source/ui/browser/brwview.cxx
parent#85620# no index design if no connection is available (diff)
downloadcore-d3760163d909423d0ff386b03348d34efa6472c8.tar.gz
core-d3760163d909423d0ff386b03348d34efa6472c8.zip
delete the status window upon desctruction
Diffstat (limited to 'dbaccess/source/ui/browser/brwview.cxx')
-rw-r--r--dbaccess/source/ui/browser/brwview.cxx9
1 files changed, 7 insertions, 2 deletions
diff --git a/dbaccess/source/ui/browser/brwview.cxx b/dbaccess/source/ui/browser/brwview.cxx
index 2675089414b2..d030788c29fd 100644
--- a/dbaccess/source/ui/browser/brwview.cxx
+++ b/dbaccess/source/ui/browser/brwview.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: brwview.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: fs $ $Date: 2001-04-03 08:15:53 $
+ * last change: $Author: fs $ $Date: 2001-04-03 12:07:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -167,6 +167,11 @@ UnoDataBrowserView::~UnoDataBrowserView()
delete m_pTreeView;
m_pTreeView = NULL;
}
+ if(m_pStatus)
+ {
+ delete m_pStatus;
+ m_pStatus = NULL;
+ }
::comphelper::disposeComponent(m_xGrid);
}
// -----------------------------------------------------------------------------