core: solved PictureEntry defined as class and struct.

PictureEntry was defined as class in imagedownloader.h and
as struct in divepicturemodel.h

A class has a vptr in front, so the difference is real at least
for the clang compiler.

Signed-off-by: Jan Iversen <jani@apache.org>
This commit is contained in:
jan Iversen 2018-05-18 21:11:15 +02:00 committed by Dirk Hohndel
parent 6034b25cb2
commit 2a0ee09cb2

View file

@ -23,7 +23,7 @@ private:
void saveImage(QNetworkReply *reply);
};
class PictureEntry;
struct PictureEntry;
class Thumbnailer : public QObject {
Q_OBJECT
public: