summaryrefslogtreecommitdiff
path: root/vcl/qt5
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-09-05 15:54:52 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-09-06 20:53:01 +0200
commit81f6842a7d03f5b93ddcece64ef252cc9adf4350 (patch)
tree47d56a1475c11f28664266654e19709422bfa12b /vcl/qt5
parentf8cf0d2cb4e5e18f48d6b3bfbc7d0e72e7ed5190 (diff)
clang-tidy:readability-redundant-member-init
Change-Id: I51f4e8affac41023110042b534a915f096ccd0c5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121692 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/qt5')
-rw-r--r--vcl/qt5/Qt5SvpGraphics.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/qt5/Qt5SvpGraphics.cxx b/vcl/qt5/Qt5SvpGraphics.cxx
index 9dc9b7e2a5ad..5143114bcb74 100644
--- a/vcl/qt5/Qt5SvpGraphics.cxx
+++ b/vcl/qt5/Qt5SvpGraphics.cxx
@@ -25,8 +25,7 @@
#include <QtWidgets/QWidget>
Qt5SvpGraphics::Qt5SvpGraphics(Qt5Frame* pFrame)
- : SvpSalGraphics()
- , m_pFrame(pFrame)
+ : m_pFrame(pFrame)
{
if (!Qt5Data::noNativeControls())
m_pWidgetDraw.reset(new Qt5Graphics_Controls(*this));