summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@theqtcompany.com>2015-08-03 12:14:25 +0200
committerEskil Abrahamsen-Blomfeldt <eskil.abrahamsen-blomfeldt@theqtcompany.com>2015-08-05 11:32:31 +0300
commitb90b7a8823b4190d62f61a951cb24925f86e0f0d (patch)
treebfc96b478dff64aec0fe49e3c1be094580130632 /examples
parentd0f284e7d1ddf5f7b2a68d2cb2a1285030797021 (diff)
com.digia.* -> org.qtproject.*
In preparation of submitting to the Qt Project, change all domains from com.digia to org.qtproject. Change-Id: Id5e9676fdb6de6244447288d35c5c4cb41bbd577 Reviewed-by: Andy Nichols <andy.nichols@theqtcompany.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/purchasing/qthangman/main.cpp2
-rw-r--r--examples/purchasing/qthangman/qml/qthangman/MainView.qml2
-rw-r--r--examples/purchasing/qthangman/qml/qthangman/StoreView.qml4
-rw-r--r--examples/purchasing/qthangman/qthangman.pro4
4 files changed, 6 insertions, 6 deletions
diff --git a/examples/purchasing/qthangman/main.cpp b/examples/purchasing/qthangman/main.cpp
index ae7d80d..fca614c 100644
--- a/examples/purchasing/qthangman/main.cpp
+++ b/examples/purchasing/qthangman/main.cpp
@@ -28,7 +28,7 @@ int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
- qmlRegisterType<HangmanGame>("com.digia.qthangman", 1, 0, "HangmanGame");
+ qmlRegisterType<HangmanGame>("org.qtproject.qthangman", 1, 0, "HangmanGame");
QQmlApplicationEngine engine(QUrl("qrc:/qml/qthangman/main.qml"));
diff --git a/examples/purchasing/qthangman/qml/qthangman/MainView.qml b/examples/purchasing/qthangman/qml/qthangman/MainView.qml
index 990f51a..5f3071c 100644
--- a/examples/purchasing/qthangman/qml/qthangman/MainView.qml
+++ b/examples/purchasing/qthangman/qml/qthangman/MainView.qml
@@ -20,7 +20,7 @@
import QtQuick 2.2
import QtQuick.Controls 1.1
-import com.digia.qthangman 1.0
+import org.qtproject.qthangman 1.0
import QtPurchasing 1.0
Item {
diff --git a/examples/purchasing/qthangman/qml/qthangman/StoreView.qml b/examples/purchasing/qthangman/qml/qthangman/StoreView.qml
index 25bce6a..6fa17a1 100644
--- a/examples/purchasing/qthangman/qml/qthangman/StoreView.qml
+++ b/examples/purchasing/qthangman/qml/qthangman/StoreView.qml
@@ -67,7 +67,7 @@ Item {
id: product100Vowels
store: iapStore
type: Product.Consumable
- identifier: "com.digia.qthangman.100vowels"
+ identifier: "org.qtproject.qthangman.100vowels"
onPurchaseSucceeded: {
console.log(identifier + " purchase successful");
@@ -89,7 +89,7 @@ Item {
id: productUnlockVowels
type: Product.Unlockable
store: iapStore
- identifier: "com.digia.qthangman.unlockvowels"
+ identifier: "org.qtproject.qthangman.unlockvowels"
onPurchaseSucceeded: {
console.log(identifier + " purchase successful");
diff --git a/examples/purchasing/qthangman/qthangman.pro b/examples/purchasing/qthangman/qthangman.pro
index 978ad33..d1bea15 100644
--- a/examples/purchasing/qthangman/qthangman.pro
+++ b/examples/purchasing/qthangman/qthangman.pro
@@ -34,7 +34,7 @@ OTHER_FILES += \
ios {
#Change the following lines to match your unique App ID
#to enable in-app purchases on iOS
- #For example if your App ID is com.digia.qt.iosteam.qthangman"
- #QMAKE_TARGET_BUNDLE_PREFIX = "com.digia.qt.iosteam"
+ #For example if your App ID is org.qtproject.qt.iosteam.qthangman"
+ #QMAKE_TARGET_BUNDLE_PREFIX = "org.qtproject.qt.iosteam"
#TARGET = qthangman
}