summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/appquit.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2006-02-07 09:29:20 +0000
committerRüdiger Timm <rt@openoffice.org>2006-02-07 09:29:20 +0000
commit657d1ad05b8c6139847a6351cfbafd8af0cbb241 (patch)
tree2e374e08cd5ea94a9eb563f650f4c835f0e43eed /sfx2/source/appl/appquit.cxx
parent4da9e99913e9c5b985ab762b93270ad49c504124 (diff)
INTEGRATION: CWS fwk31 (1.33.108); FILE MERGED
2006/01/18 14:08:20 cd 1.33.108.1: #123501# Comment out SetViewFrame(0) as it makes no sense to call in SfxApplication::Deinitialize. All view frames should be closed at that time
Diffstat (limited to 'sfx2/source/appl/appquit.cxx')
-rw-r--r--sfx2/source/appl/appquit.cxx11
1 files changed, 8 insertions, 3 deletions
diff --git a/sfx2/source/appl/appquit.cxx b/sfx2/source/appl/appquit.cxx
index b5d276607172..1306f0087748 100644
--- a/sfx2/source/appl/appquit.cxx
+++ b/sfx2/source/appl/appquit.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: appquit.cxx,v $
*
- * $Revision: 1.34 $
+ * $Revision: 1.35 $
*
- * last change: $Author: rt $ $Date: 2006-02-07 10:27:56 $
+ * last change: $Author: rt $ $Date: 2006-02-07 10:29:20 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -208,7 +208,12 @@ void SfxApplication::Deinitialize()
DELETEZ( pAppData_Impl->pTemplates );
DELETEZ(pImp->pTemplateDlg);
- SetViewFrame(0);
+ // By definition there shouldn't be any open view frames when we reach
+ // this method. Therefore this call makes no sense and is the source of
+ // some stack traces, which we don't understand.
+ // For more information see:
+ // #123501#
+ //SetViewFrame(0);
bDowning = FALSE;
DBG_ASSERT( !SfxViewFrame::GetFirst(),
"existing SfxViewFrame after Execute" );