diff options
author | Steve Bennetts <steve@lindenlab.com> | 2009-10-27 16:31:07 -0700 |
---|---|---|
committer | Steve Bennetts <steve@lindenlab.com> | 2009-10-27 16:31:07 -0700 |
commit | cadc8dc4a3c6f5d7a431e671857d09e0b5eac4a4 (patch) | |
tree | 1492275a17540d35b88c3eef11447b593f87f6af /indra/newview/llviewerwindow.cpp | |
parent | 9423f756e0d0eae72f0f79aa7f1a85b56a282e6f (diff) |
Fix for gInventory cleanup on shutdown, includes making LLNavigationBar a LLSingleton and explicitly destroying it with the rest of the UI.
Diffstat (limited to 'indra/newview/llviewerwindow.cpp')
-rw-r--r-- | indra/newview/llviewerwindow.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index c659e58e47..f141d33729 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -1637,7 +1637,11 @@ void LLViewerWindow::shutdownViews() // DEV-40930: Clear sModalStack. Otherwise, any LLModalDialog left open // will crump with LL_ERRS. LLModalDialog::shutdownModals(); - + + // destroy the nav bar, not currently part of gViewerWindow + // *TODO: Make LLNavigationBar part of gViewerWindow + delete LLNavigationBar::getInstance(); + // Delete all child views. delete mRootView; mRootView = NULL; |