diff options
author | Anselmo L. S. Melo <[email protected]> | 2014-03-29 18:31:57 -0300 |
---|---|---|
committer | Anselmo L. S. Melo <[email protected]> | 2014-05-09 13:04:53 +0200 |
commit | 5a530b2b9e514a83b9e5f2a66f06b37d35cac3f2 (patch) | |
tree | 7d782a5a1e5e1b1afe2cf16fa4c546c6af6eedd2 /src/models/uiproxyqmlmodel.h | |
parent | 67d58739f5e2fbefd45ff911da244aa4c910529d (diff) |
This project was developed before the release of Qt 5.0, so some
of the APIs had to be updated in order to build again.
Change-Id: I579d7170ea0d80bd33aee29ec807461af603b0d3
Reviewed-by: Anselmo L. S. Melo <[email protected]>
Diffstat (limited to 'src/models/uiproxyqmlmodel.h')
-rw-r--r-- | src/models/uiproxyqmlmodel.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/models/uiproxyqmlmodel.h b/src/models/uiproxyqmlmodel.h index 3b69207..2192459 100644 --- a/src/models/uiproxyqmlmodel.h +++ b/src/models/uiproxyqmlmodel.h @@ -50,7 +50,7 @@ QT_BEGIN_HEADER -class QQuickListModel; +class QQmlListModel; QT_BEGIN_NAMESPACE_UIHELPERS @@ -66,10 +66,10 @@ public: UiProxyQmlModel(QObject *parent = 0); ListType updateSource(const QVariant &sourceModel); - + QHash<int, QByteArray> roleNames(); protected: void createFromList(const QVariantList &list); - void createFromQuickList(QQuickListModel *list); + void createFromQuickList(QQmlListModel *list); }; QT_END_NAMESPACE_UIHELPERS |