Revert unintended changes (debug output)

This commit is contained in:
Mike Gelfand 2015-01-28 23:08:41 +00:00
parent e707e8d4c5
commit ae72695d0c
1 changed files with 0 additions and 2 deletions

View File

@ -25,7 +25,6 @@ extern "C"
struct tr_variant; struct tr_variant;
} }
#include <QDebug>
class Prefs: public QObject class Prefs: public QObject
{ {
Q_OBJECT Q_OBJECT
@ -176,7 +175,6 @@ class Prefs: public QObject
const QVariant tmp = QVariant::fromValue (value); const QVariant tmp = QVariant::fromValue (value);
if (v.isNull() || (v!=tmp)) if (v.isNull() || (v!=tmp))
{ {
qDebug () << key << ":" << v << "->" << tmp;
v = tmp; v = tmp;
emit changed (key); emit changed (key);
} }