summaryrefslogtreecommitdiffstats
path: root/src/gui/painting/qpdf.cpp
diff options
context:
space:
mode:
authorAndreas Buhr <andreas.buhr@qt.io>2020-11-12 15:54:07 +0100
committerAndreas Buhr <andreas.buhr@qt.io>2020-11-13 10:08:49 +0100
commitc87692a48b053b830ca192a2580f7d27723f16df (patch)
tree8c78f3b042367ad4850e4af0d65099595b8809ca /src/gui/painting/qpdf.cpp
parent1c56ff73aa7f81d543f1b697c2db8cb2b67697ab (diff)
remove unused variables and parameters to fix compilation with g++-10.2
The changes in 94dd2cebdcb9446626cd32a00086431eb11ab2a4, "Remove Qt4Compatible painting" left some unused variables and parameters. This leads to warnings which are treted as errors and thus inhibit a successful build with g++-10.2. This patch removes them and thus enables building with g++-10.2 again. Change-Id: I5f83aa8ec8706c3e783540f5116f455ea8fe44c2 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
Diffstat (limited to 'src/gui/painting/qpdf.cpp')
-rw-r--r--src/gui/painting/qpdf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/painting/qpdf.cpp b/src/gui/painting/qpdf.cpp
index 0ef3b968a1..626274d856 100644
--- a/src/gui/painting/qpdf.cpp
+++ b/src/gui/painting/qpdf.cpp
@@ -649,7 +649,7 @@ QPdf::Stroker::Stroker()
basicStroker.setStrokeWidth(.1);
}
-void QPdf::Stroker::setPen(const QPen &pen, QPainter::RenderHints hints)
+void QPdf::Stroker::setPen(const QPen &pen, QPainter::RenderHints)
{
if (pen.style() == Qt::NoPen) {
stroker = nullptr;