From 1d7319dcd8e7c39734b7ecbb648a0cd71ba905e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Sun, 10 Apr 2016 20:05:27 +0200 Subject: [PATCH] Make ComicInfo a QObject, so it can be used in QML code. --- common/comic_db.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/comic_db.h b/common/comic_db.h index 417efa4d..b56f2685 100644 --- a/common/comic_db.h +++ b/common/comic_db.h @@ -8,8 +8,9 @@ #include #include -class ComicInfo +class ComicInfo : public QObject { + Q_OBJECT public: ComicInfo(); ComicInfo(const ComicInfo & comicInfo);