Commit 7ac13ee0fcc1edb96644b1a84f52707134bcee69

  • avatar
  • Patrick Stählin <pstaehlin @futu…lab.ch>
  • Tue Aug 24 23:21:04 CEST 2010
Print something when cleaning up a script
core/eventinterpreterplugins.cpp
(1 / 1)
  
199199 tScriptContextIterator ipScriptContext = m_KeptContexts.begin();
200200 while(ipScriptContext != m_KeptContexts.end()) {
201201 if(!(*ipScriptContext)->hasAttachedObjects()) {
202 Logger::getInstance()->log("cleanupTerminatedScripts: erasing script");
202203 ipScriptContext = m_KeptContexts.erase(ipScriptContext);
203204 } else {
204205 ++ipScriptContext;
213213 pEvent->setProperty("time", "+" + intToString(20));
214214 getEventInterpreter().getQueue().pushEvent(pEvent);
215215 } // sendCleanupEvent
216
217216
218217
219218 //================================================== EventInterpreterPluginDS485