summaryrefslogtreecommitdiff
path: root/pages/ExistingLogin.qml
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-08 15:34:39 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-08 15:34:39 +0800
commit3a009baf606a6720122b64efc9fc3e18ba6e084c (patch)
tree552eeb20bef1d04111b26891052e9c88f6e151e4 /pages/ExistingLogin.qml
parent65cb0702d4adf2c1e37e59d256709db7db1f9972 (diff)
Renamed the C++ to QML import
Diffstat (limited to 'pages/ExistingLogin.qml')
-rw-r--r--pages/ExistingLogin.qml12
1 files changed, 4 insertions, 8 deletions
diff --git a/pages/ExistingLogin.qml b/pages/ExistingLogin.qml
index 6833c6a..8e78a09 100644
--- a/pages/ExistingLogin.qml
+++ b/pages/ExistingLogin.qml
@@ -1,12 +1,8 @@
import QtQuick 2.12
-import id.co.darapsa.kelakon.user 0.1
+import KelakonUser 0.1
ExistingLoginForm {
- width: stackView.width
- height: stackView.height
- backButton {
- onClicked: {
- stackView.pop()
- }
- }
+ width: stackView.width
+ height: stackView.height
+ backButton.onClicked: stackView.pop()
}