From d21067c8c8e5ff9e4e214285ee914b67eb782719 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Thu, 17 May 2018 18:55:23 +0200 Subject: compat: fix -Wextra --- compat/tr.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compat/tr.cpp b/compat/tr.cpp index 91713591..7cff52a9 100644 --- a/compat/tr.cpp +++ b/compat/tr.cpp @@ -1,9 +1,9 @@ #include "tr.hpp" -TR::TR() {} +TR::TR() : QObject(nullptr) {} -TR::TR(const TR&) {} +TR::TR(const TR&) : QObject(nullptr) {} TR& TR::operator=(const TR& other) { -- cgit v1.2.3