diff options
author | obscuren <geffobscura@gmail.com> | 2014-08-12 18:16:21 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-08-12 18:16:21 +0800 |
commit | 59d9746849e9ba794a190b04d3d9f444321b82b8 (patch) | |
tree | be6c4370000085fdec4cd378cf07d35c18d6c00f /ethereal/assets/qml/wallet.qml | |
parent | 2e2f23a0aef637b8b43362bb8a2dba16d5c02c25 (diff) | |
download | dexon-59d9746849e9ba794a190b04d3d9f444321b82b8.tar.gz dexon-59d9746849e9ba794a190b04d3d9f444321b82b8.tar.zst dexon-59d9746849e9ba794a190b04d3d9f444321b82b8.zip |
Changed naming on exposed QML variables
Diffstat (limited to 'ethereal/assets/qml/wallet.qml')
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index b3fda0a58..10cbe5c1e 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -26,7 +26,7 @@ ApplicationWindow { var pendingTxView = addPlugin("./views/pending_tx.qml") // Call the ready handler - eth.done() + gui.done() } function addPlugin(path, options) { @@ -111,7 +111,7 @@ ApplicationWindow { text: "Run JS file" onTriggered: { generalFileDialog.callback = function(path) { - eth.evalJavascriptFile(path) + lib.evalJavascriptFile(path) } generalFileDialog.open() } @@ -155,7 +155,7 @@ ApplicationWindow { id: miningButton text: "Start Mining" onClicked: { - eth.toggleMining() + gui.toggleMining() } } @@ -456,7 +456,7 @@ ApplicationWindow { anchors.leftMargin: 5 text: "Import" onClicked: { - eth.importTx(txImportField.text) + lib.importTx(txImportField.text) txImportField.visible = false } } |