Skip to content
Snippets Groups Projects
Commit c0707840 authored by Fons Rademakers's avatar Fons Rademakers
Browse files

in dtor call TQObject::BlockAllSignals(), so no signals, typically

"Removed" signals, are emitted from TFileHandlers, etc. In this far state
of destruction the emission of signals will cause bad side effects or
crashes.


git-svn-id: http://root.cern.ch/svn/root/trunk@22792 27541ba8-7e3a-0410-8455-c3a389f83636
parent 1292dee2
No related merge requests found
......@@ -466,6 +466,9 @@ TROOT::~TROOT()
// SafeDelete(fGlobalFunctions);
// fClasses->Delete(); SafeDelete(fClasses); // TClass'es must be deleted last
// Stop emitting signals
TQObject::BlockAllSignals(kTRUE);
// Remove shared libraries produced by the TSystem::CompileMacro() call
gSystem->CleanCompiledMacros();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment