From 79d2ec23283f06fc84c2b993c8d3ff76ae81b762 Mon Sep 17 00:00:00 2001 From: kervala Date: Sun, 14 Aug 2016 12:50:29 +0200 Subject: [PATCH] Fixed: Missing Q_OBJECT, see #279 --- code/ryzom/tools/client/ryzom_installer/src/profilesmodel.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/ryzom/tools/client/ryzom_installer/src/profilesmodel.h b/code/ryzom/tools/client/ryzom_installer/src/profilesmodel.h index ca78ec028..b7fe64185 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/profilesmodel.h +++ b/code/ryzom/tools/client/ryzom_installer/src/profilesmodel.h @@ -11,6 +11,8 @@ */ class CProfilesModel : public QAbstractListModel { + Q_OBJECT + public: CProfilesModel(QObject *parent); CProfilesModel(const CProfiles &profiles, QObject *parent);