Changelog for 0.0.8
[harmattan/cameraplus] / declarative / videoresolutionmodel.cpp
index 784e166..1cd0981 100644 (file)
@@ -98,12 +98,27 @@ void VideoResolutionModel::setAspectRatio(const QString& aspectRatio) {
 
     m_aspectRatio = aspectRatio;
 
-    emit aspectRatioChanged();
-
     beginResetModel();
 
     m_resolutions = m_settings->resolutions(m_aspectRatio);
 
     endResetModel();
+
+    emit aspectRatioChanged();
+    emit countChanged();
   }
 }
+
+int VideoResolutionModel::count() const {
+  return rowCount();
+}
+
+#if defined(QT5)
+QHash<int, QByteArray> VideoResolutionModel::roleNames() const {
+  return m_roles;
+}
+
+void VideoResolutionModel::setRoleNames(const QHash<int, QByteArray>& roles) {
+  m_roles = roles;
+}
+#endif