diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2018-03-31 03:25:20 +0200 |
|---|---|---|
| committer | Sander Ferdinand <sa.ferdinand@gmail.com> | 2018-03-31 03:25:20 +0200 |
| commit | e638ed0272ca042f3ad77b680665a91ed8a35cce (patch) | |
| tree | 1c91223dd243221d644a0b22d2dc94563b264fdf /components/SubaddressTable.qml | |
| parent | 959c2fcc32d515f90cb39933689a37418197a095 (diff) | |
| download | monzero-gui-e638ed0272ca042f3ad77b680665a91ed8a35cce.tar.gz monzero-gui-e638ed0272ca042f3ad77b680665a91ed8a35cce.tar.xz monzero-gui-e638ed0272ca042f3ad77b680665a91ed8a35cce.zip | |
Explicitly import MoneroComponents; prevent namespace pollution
Diffstat (limited to 'components/SubaddressTable.qml')
| -rw-r--r-- | components/SubaddressTable.qml | 16 |
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 } |
