VideoPlayer::paused property does not exist. Use VideoPlayer::state instead
[harmattan/cameraplus] / qml / CheckButton.qml
index 08bc01c..ac3335e 100644 (file)
@@ -3,7 +3,7 @@
 /*!
  * This file is part of CameraPlus.
  *
- * Copyright (C) 2012 Mohammed Sameer <msameer@foolab.org>
+ * Copyright (C) 2012-2013 Mohammed Sameer <msameer@foolab.org>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-import QtQuick 1.1
-import com.nokia.meego 1.1
+import QtQuick 2.0
 
-ToolIcon {
-        id: button
-        property string normalIcon: ""
-        property string checkedIcon: ""
-        property int value: -1
-        property int savedValue: -1
+CameraToolIcon {
+    id: button
+    property string normalIconId
+    property string checkedIconId
+    property int value: -1
+    property int savedValue: -1
 
-        iconSource: savedValue == value ? checkedIcon : normalIcon
+    iconId: savedValue == value ? checkedIconId : normalIconId
 }