From fe5b5e25eadbfe9f8bdaa152b987273ab77d4711 Mon Sep 17 00:00:00 2001 From: Kevin Smith Date: Sun, 23 Dec 2012 16:16:11 +0000 Subject: Remove spurious qdebug Change-Id: Ifcdcafb22a37f2cdaccf2b31d21eb5a42b1bf2b2 diff --git a/Swift/QtUI/QtSwift.cpp b/Swift/QtUI/QtSwift.cpp index 944656d..96e08a3 100644 --- a/Swift/QtUI/QtSwift.cpp +++ b/Swift/QtUI/QtSwift.cpp @@ -104,15 +104,12 @@ XMLSettingsProvider* QtSwift::loadSettingsFile(const QString& fileName) { } void QtSwift::loadEmoticonsFile(const QString& fileName, QMap& emoticons) { - qDebug() << "Trying to load " << fileName; QFile file(fileName); if (file.exists() && file.open(QIODevice::ReadOnly)) { - qDebug() << "Success"; while (!file.atEnd()) { QString line = file.readLine(); line.replace("\n", ""); line.replace("\r", ""); - qDebug() << "Parsing line : " << line; QStringList tokens = line.split(" "); if (tokens.size() == 2) { QString emoticonFile = tokens[1]; @@ -120,11 +117,9 @@ void QtSwift::loadEmoticonsFile(const QString& fileName, QMap& emoticonFile = "file://" + emoticonFile; } emoticons[tokens[0]] = emoticonFile; - qDebug() << "Adding mapping from " << tokens[0] << " to " << emoticonFile; } } } - qDebug() << "Done"; } QtSwift::QtSwift(const po::variables_map& options) : networkFactories_(&clientMainThreadCaller_), autoUpdater_(NULL), idleDetector_(&idleQuerier_, networkFactories_.getTimerFactory(), 1000) { -- cgit v0.10.2-6-g49f6