Differences From Artifact [9de4f15a71]:

  • File src/AsyncImage.hxx — part of check-in [ea44ccccca] at 2018-11-08 13:36:15 on branch trunk — AsyncImage: use QtConcurrent for asynchronous transformation (user: fifr size: 1225)

To Artifact [b3be70e1cb]:

  • File src/AsyncImage.hxx — part of check-in [a866179b8c] at 2018-11-15 13:19:12 on branch trunk — Add `parent` parameter to constructor of QObject derived classes (user: fifr size: 1253)

24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
class AsyncImage : public BaseImage
{
    Q_OBJECT

    friend class AsyncImageTask;

public:
    AsyncImage();

    ~AsyncImage();

signals:
    void startTransform(const QImage& image);

protected:







|







24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
class AsyncImage : public BaseImage
{
    Q_OBJECT

    friend class AsyncImageTask;

public:
    AsyncImage(QQuickItem* parent = nullptr);

    ~AsyncImage();

signals:
    void startTransform(const QImage& image);

protected: