diff options
author | jan Iversen <jani@libreoffice.org> | 2018-05-18 21:11:15 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-05-18 12:42:48 -0700 |
commit | 2a0ee09cb2cf1c3cb7ee020d5c6b58bcc50123ca (patch) | |
tree | b384a8b85addfc4a8e71321a5210d409cdf5fbd8 /core/imagedownloader.h | |
parent | 6034b25cb2f2c5226ba140d14fae413336854c39 (diff) | |
download | subsurface-2a0ee09cb2cf1c3cb7ee020d5c6b58bcc50123ca.tar.gz |
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>
Diffstat (limited to 'core/imagedownloader.h')
-rw-r--r-- | core/imagedownloader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/imagedownloader.h b/core/imagedownloader.h index 3c316a2f6..fe0a9631b 100644 --- a/core/imagedownloader.h +++ b/core/imagedownloader.h @@ -23,7 +23,7 @@ private: void saveImage(QNetworkReply *reply); }; -class PictureEntry; +struct PictureEntry; class Thumbnailer : public QObject { Q_OBJECT public: |