summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Gaist <samuel.gaist@edeltech.ch>2013-11-03 19:55:25 (GMT)
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-11-04 21:51:57 (GMT)
commitc2600ca630d8adf13d6b8cfea8f833291bf7b6f1 (patch)
tree7fe807274bc304da2512e29cc8e65511dbdd8870
parent6bf8bbeb813f70b44105994d745133d9ed5f9ea1 (diff)
downloadQt-c2600ca630d8adf13d6b8cfea8f833291bf7b6f1.zip
Qt-c2600ca630d8adf13d6b8cfea8f833291bf7b6f1.tar.gz
Qt-c2600ca630d8adf13d6b8cfea8f833291bf7b6f1.tar.bz2
QPdfEngine - Remove Producer copyright notice
Remove the copyright notice from the PDF Producer field which could be misunderstood. Comparison to other PDF Producers shows no other company does this. Based on https://codereview.qt-project.org/#change,70182 Task-number: QTBUG-33853 Change-Id: I3a2820c1466963e7391b4a9a729c7261a3582e0b Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com> Reviewed-by: John Layt <jlayt@kde.org>
-rw-r--r--src/gui/painting/qprintengine_pdf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/painting/qprintengine_pdf.cpp b/src/gui/painting/qprintengine_pdf.cpp
index 2cceedb..8225785 100644
--- a/src/gui/painting/qprintengine_pdf.cpp
+++ b/src/gui/painting/qprintengine_pdf.cpp
@@ -943,7 +943,7 @@ void QPdfEnginePrivate::writeInfo()
xprintf("\n/Creator ");
printString(creator);
xprintf("\n/Producer ");
- printString(QString::fromLatin1("Qt " QT_VERSION_STR " (C) 2011 Nokia Corporation and/or its subsidiary(-ies)"));
+ printString(QString::fromLatin1("Qt " QT_VERSION_STR));
QDateTime now = QDateTime::currentDateTime().toUTC();
QTime t = now.time();
QDate d = now.date();