Remove debug print

This commit is contained in:
Atlante45 2016-03-16 16:56:40 -07:00
parent c48be75a37
commit 6d2498b4f2
2 changed files with 0 additions and 2 deletions

View file

@ -82,7 +82,6 @@ void LogHandler::flushRepeatedMessages() {
}
QString LogHandler::printMessage(LogMsgType type, const QMessageLogContext& context, const QString& message) {
if (message.isEmpty()) {
return QString();
}

View file

@ -114,7 +114,6 @@ QScriptValue QmlWindowClass::internalConstructor(const QString& qmlSource,
}
} else {
auto argumentObject = context->argument(0);
qDebug() << argumentObject.toString();
if (!argumentObject.property(TITLE_PROPERTY).isUndefined()) {
title = argumentObject.property(TITLE_PROPERTY).toString();
}