0.12.3: Increased Tango rendering performance, modified all handleEvent() with new interface (now returning bool)

This commit is contained in:
matlabbe
2017-03-12 21:21:09 -04:00
parent c12980ee91
commit d21ae76fff
56 changed files with 1869 additions and 662 deletions

View File

@@ -62,7 +62,7 @@ ConsoleWidget::~ConsoleWidget()
delete _ui;
}
void ConsoleWidget::handleEvent(UEvent * anEvent)
bool ConsoleWidget::handleEvent(UEvent * anEvent)
{
// WARNING, don't put a log message here! otherwise it could be recursively called.
if(anEvent->getClassName().compare("ULogEvent") == 0)
@@ -100,6 +100,7 @@ void ConsoleWidget::handleEvent(UEvent * anEvent)
}
}
return false;
}
void ConsoleWidget::appendMsg(const QString & msg, int level)