summaryrefslogtreecommitdiff
path: root/components/RemoteNodeDialog.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/RemoteNodeDialog.qml')
-rw-r--r--components/RemoteNodeDialog.qml18
1 files changed, 9 insertions, 9 deletions
diff --git a/components/RemoteNodeDialog.qml b/components/RemoteNodeDialog.qml
index 015f122d..36376386 100644
--- a/components/RemoteNodeDialog.qml
+++ b/components/RemoteNodeDialog.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2021-2024, The Monero Project
+// Copyright (c) 2021-2024, The Monzero Project
//
// All rights reserved.
//
@@ -30,9 +30,9 @@ import QtQuick 2.9
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.1
-import "." as MoneroComponents
+import "." as MonzeroComponents
-MoneroComponents.Dialog {
+MonzeroComponents.Dialog {
id: root
title: (editMode ? qsTr("Edit remote node") : qsTr("Add remote node")) + translationManager.emptyString
@@ -89,7 +89,7 @@ MoneroComponents.Dialog {
root.success = false;
}
- MoneroComponents.RemoteNodeEdit {
+ MonzeroComponents.RemoteNodeEdit {
id: remoteNodeAddress
Layout.fillWidth: true
placeholderFontSize: 15
@@ -107,7 +107,7 @@ MoneroComponents.Dialog {
Layout.fillWidth: true
spacing: 32
- MoneroComponents.LineEdit {
+ MonzeroComponents.LineEdit {
id: daemonUsername
Layout.fillWidth: true
Layout.minimumWidth: 220
@@ -118,7 +118,7 @@ MoneroComponents.Dialog {
fontSize: 15
}
- MoneroComponents.LineEdit {
+ MonzeroComponents.LineEdit {
id: daemonPassword
Layout.fillWidth: true
Layout.minimumWidth: 220
@@ -136,7 +136,7 @@ MoneroComponents.Dialog {
}
}
- MoneroComponents.CheckBox {
+ MonzeroComponents.CheckBox {
id: setTrustedDaemonCheckBox
activeFocusOnTab: true
text: qsTr("Mark as Trusted Daemon") + translationManager.emptyString
@@ -146,7 +146,7 @@ MoneroComponents.Dialog {
Layout.alignment: Qt.AlignRight
spacing: parent.spacing
- MoneroComponents.StandardButton {
+ MonzeroComponents.StandardButton {
activeFocusOnTab: true
fontBold: false
primary: false
@@ -155,7 +155,7 @@ MoneroComponents.Dialog {
onClicked: root.close()
}
- MoneroComponents.StandardButton {
+ MonzeroComponents.StandardButton {
activeFocusOnTab: true
fontBold: false
enabled: remoteNodeAddress.getAddress() != ""