diff options
-rw-r--r-- | harbour-binaryfun.pro | 1 | ||||
-rw-r--r-- | qml/pages/Game.qml | 2 | ||||
-rw-r--r-- | qml/pages/LeaderBoard.qml | 4 |
3 files changed, 4 insertions, 3 deletions
diff --git a/harbour-binaryfun.pro b/harbour-binaryfun.pro index 1cfcb0e..cc79a76 100644 --- a/harbour-binaryfun.pro +++ b/harbour-binaryfun.pro @@ -17,6 +17,7 @@ CONFIG += sailfishapp SOURCES += src/harbour-binaryfun.cpp DISTFILES += qml/harbour-binaryfun.qml \ + ../harbour-sailchess/qml/Functions.qml \ qml/Bit.qml \ qml/cover/CoverPage.qml \ qml/pages/Game.qml \ diff --git a/qml/pages/Game.qml b/qml/pages/Game.qml index 550f815..a45798e 100644 --- a/qml/pages/Game.qml +++ b/qml/pages/Game.qml @@ -1,6 +1,6 @@ import QtQuick 2.2 import Sailfish.Silica 1.0 -import org.nemomobile.configuration 1.0 +import Nemo.Configuration 1.0 import ".." Page { diff --git a/qml/pages/LeaderBoard.qml b/qml/pages/LeaderBoard.qml index 1c1fb33..39ca742 100644 --- a/qml/pages/LeaderBoard.qml +++ b/qml/pages/LeaderBoard.qml @@ -1,6 +1,6 @@ import QtQuick 2.2 import Sailfish.Silica 1.0 -import org.nemomobile.configuration 1.0 +import Nemo.Configuration 1.0 Page { id: page @@ -40,7 +40,7 @@ Page { if (xhr.readyState === 4 && xhr.status === 200) { list.model = JSON.parse(xhr.responseText); internet.visible = false; - } else { + } else if (xhr.readyState === 4) { list.model = [] internet.visible = true; } |