diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-05-14 07:14:43 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-05-14 07:14:43 (GMT) |
commit | 7890ee311ba661ed37d17b87cc9032386d13b29a (patch) | |
tree | 305dd537e2f1b507bb07a441851c4bbde8ca2f0e | |
parent | b2d66910ba803570644e4df780432f1b41d1a8d5 (diff) | |
download | swift-7890ee311ba661ed37d17b87cc9032386d13b29a.zip swift-7890ee311ba661ed37d17b87cc9032386d13b29a.tar.bz2 |
Removed debug info.
-rw-r--r-- | Swift/QtUI/QtChatView.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/QtUI/QtChatView.cpp b/Swift/QtUI/QtChatView.cpp index e3fc2b3..c533525 100644 --- a/Swift/QtUI/QtChatView.cpp +++ b/Swift/QtUI/QtChatView.cpp @@ -207,7 +207,7 @@ void QtChatView::handleViewLoadFinished(bool ok) { } void QtChatView::increaseFontSize(int numSteps) { - qDebug() << "Increasing"; + //qDebug() << "Increasing"; fontSizeSteps_ += numSteps; emit fontResized(fontSizeSteps_); } @@ -224,7 +224,7 @@ void QtChatView::resizeFont(int fontSizeSteps) { fontSizeSteps_ = fontSizeSteps; double size = 1.0 + 0.2 * fontSizeSteps_; QString sizeString(QString().setNum(size, 'g', 3) + "em"); - qDebug() << "Setting to " << sizeString; + //qDebug() << "Setting to " << sizeString; const QWebElementCollection spans = document_.findAll("span"); foreach (QWebElement span, spans) { span.setStyleProperty("font-size", sizeString); |