mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-17 20:36:15 +00:00
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:
parent
6034b25cb2
commit
2a0ee09cb2
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ private:
|
|||
void saveImage(QNetworkReply *reply);
|
||||
};
|
||||
|
||||
class PictureEntry;
|
||||
struct PictureEntry;
|
||||
class Thumbnailer : public QObject {
|
||||
Q_OBJECT
|
||||
public:
|
||||
|
|
Loading…
Add table
Reference in a new issue