From 27e742af587b1495809690d77dd38d6744cc1210 Mon Sep 17 00:00:00 2001 From: Flavio Tordini Date: Tue, 22 Jun 2021 01:31:51 +0200 Subject: [PATCH] default constructor needed by QVector --- src/yt/ytthumb.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/yt/ytthumb.h b/src/yt/ytthumb.h index 148870cd..fb6112c2 100644 --- a/src/yt/ytthumb.h +++ b/src/yt/ytthumb.h @@ -7,6 +7,7 @@ class YTThumb { public: + YTThumb() {} // needed by QVector YTThumb(int width, int height, const QString &url); int getWidth() const { return width; } int getHeight() const { return height; }