From 6f6fd6757167a1ffc278e4169261a222c7a1deaf Mon Sep 17 00:00:00 2001 From: RadRussianRus Date: Tue, 4 Feb 2020 17:53:59 +0300 Subject: [PATCH] Removing default constructor --- ui/style/style_core_font.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/style/style_core_font.cpp b/ui/style/style_core_font.cpp index 8ea3ed9..c753ae9 100644 --- a/ui/style/style_core_font.cpp +++ b/ui/style/style_core_font.cpp @@ -297,8 +297,7 @@ int registerFontFamily(const QString &family) { } FontData::FontData(int size, uint32 flags, int family, Font *other) -: f() -, m(f) +: m(f) , _size(size) , _flags(flags) , _family(family) {