diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-05-17 18:55:23 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-05-17 18:55:23 +0200 |
commit | d21067c8c8e5ff9e4e214285ee914b67eb782719 (patch) | |
tree | 24a64593675bddfeb7f712fb302c9a529f6cf786 /compat/tr.cpp | |
parent | 8ec19030f2d6d60876bebe78bcb397f33a55009f (diff) |
compat: fix -Wextra
Diffstat (limited to 'compat/tr.cpp')
-rw-r--r-- | compat/tr.cpp | 4 |
1 files 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) { |