Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Views/Qt4/QDebugStream.hpp

    r4d6d6a re0b5f0  
    1515
    1616#include <QTextEdit>
    17 #include <QDebug>
    1817
    1918#include <ostream>
     
    4241  {
    4342    // output anything that is left
    44     if (!m_string.empty()) {
     43    if (!m_string.empty())
    4544      log_window->append(m_string.c_str());
    46       qDebug() << m_string.c_str();
    47     }
    4845
    4946    m_stream.rdbuf(m_old_buf);
     
    5552    if (v == '\n') {
    5653      log_window->append(m_string.c_str());
    57       qDebug() << m_string.c_str();
    5854      m_string.erase(m_string.begin(), m_string.end());
    5955    } else
     
    7369        std::string tmp(m_string.begin(), m_string.begin() + pos);
    7470        log_window->append(tmp.c_str());
    75         qDebug() << tmp.c_str();
    7671        m_string.erase(m_string.begin(), m_string.begin() + pos + 1);
    7772      }
Note: See TracChangeset for help on using the changeset viewer.