mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-04 11:07:25 -04:00
Explicitly import MoneroComponents; prevent namespace pollution
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user