summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@theqtcompany.com>2016-04-05 08:46:32 +0200
committerTimur Pocheptsov <timur.pocheptsov@theqtcompany.com>2016-04-05 10:01:24 +0000
commita2963fe162921c0abb2116aec6263204954030ad (patch)
tree5cb9e09f504247e8dedd7275aecfb693254a4c63 /examples
parentb1d29faf96ee6323bf2dad054291fd7c30a30c05 (diff)
downloadqtquickcontrols-a2963fe162921c0abb2116aec6263204954030ad.tar.gz
Remove redundant qDebug
Task-number: QTBUG-52348 Change-Id: If1cef668626fbf5616b5fbb3e60233f3935334cd Reviewed-by: Liang Qi <liang.qi@theqtcompany.com> Reviewed-by: Topi Reiniƶ <topi.reinio@theqtcompany.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/quick/controls/texteditor/src/documenthandler.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/quick/controls/texteditor/src/documenthandler.cpp b/examples/quick/controls/texteditor/src/documenthandler.cpp
index 2e9987a1..2e03f747 100644
--- a/examples/quick/controls/texteditor/src/documenthandler.cpp
+++ b/examples/quick/controls/texteditor/src/documenthandler.cpp
@@ -133,7 +133,6 @@ void DocumentHandler::saveAs(const QUrl &arg, const QString &fileType)
}
f.write((isHtml ? m_doc->toHtml() : m_doc->toPlainText()).toLocal8Bit());
f.close();
- qDebug() << "saved to" << localPath;
setFileUrl(QUrl::fromLocalFile(localPath));
}