aboutsummaryrefslogtreecommitdiff
path: root/components/SubaddressTable.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/SubaddressTable.qml')
-rw-r--r--components/SubaddressTable.qml16
1 files changed, 8 insertions, 8 deletions
diff --git a/components/SubaddressTable.qml b/components/SubaddressTable.qml
index 811d1199..a024e519 100644
--- a/components/SubaddressTable.qml
+++ b/components/SubaddressTable.qml
@@ -28,8 +28,8 @@
import QtQuick 2.0
import moneroComponents.Clipboard 1.0
-import "../components"
-import "." 1.0
+
+import "../components" as MoneroComponents
ListView {
id: listView
@@ -48,7 +48,7 @@ ListView {
width: listView.width
clip: true
- LineEditMulti {
+ MoneroComponents.LineEditMulti {
id: addressLine
fontSize: 14
@@ -68,7 +68,7 @@ ListView {
addressValidation: false
}
- IconButton {
+ MoneroComponents.IconButton {
id: clipboardButton
imageSource: "../images/copyToClipboard.png"
@@ -104,7 +104,7 @@ ListView {
font.family: "Arial"
font.bold: true
font.pixelSize: 12
- color: Style.greyFontColor
+ color: MoneroComponents.Style.greyFontColor
text: label
}
@@ -126,7 +126,7 @@ ListView {
anchors.top: parent.top
anchors.bottom: parent.bottom
width: 1
- color: Style.grey
+ color: MoneroComponents.Style.grey
z: 6
}
@@ -135,7 +135,7 @@ ListView {
anchors.top: parent.top
anchors.bottom: parent.bottom
width: 1
- color: Style.grey
+ color: MoneroComponents.Style.grey
z: 6
}
@@ -143,7 +143,7 @@ ListView {
anchors.right: parent.right
anchors.left: parent.left
anchors.bottom: parent.bottom
- color: Style.grey
+ color: MoneroComponents.Style.grey
height: 1
z: 6
}