| 235 | } |
| 236 | |
| 237 | void DebuggerConsoleView::appendLine(const QString& line) |
| 238 | { |
| 239 | m_pendingOutput += line; |
| 240 | |
| 241 | // To improve performance, we update the view after some delay. |
| 242 | if (!m_updateTimer.isActive()) |
| 243 | { |
| 244 | m_updateTimer.start(); |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | void DebuggerConsoleView::flushPending() |
| 249 | { |