qml: delete WizardComponents, move into NewWalletWizard
This commit is contained in:
@@ -87,10 +87,42 @@ Wizard {
|
||||
page.last = true
|
||||
}
|
||||
|
||||
WizardComponents {
|
||||
Item {
|
||||
id: components
|
||||
property Component walletname: Component {
|
||||
WCWalletName {}
|
||||
}
|
||||
|
||||
property Component wallettype: Component {
|
||||
WCWalletType {}
|
||||
}
|
||||
|
||||
property Component keystore: Component {
|
||||
WCKeystoreType {}
|
||||
}
|
||||
|
||||
property Component createseed: Component {
|
||||
WCCreateSeed {}
|
||||
}
|
||||
|
||||
property Component haveseed: Component {
|
||||
WCHaveSeed {}
|
||||
}
|
||||
|
||||
property Component confirmseed: Component {
|
||||
WCConfirmSeed {}
|
||||
}
|
||||
|
||||
property Component bip39refine: Component {
|
||||
WCBIP39Refine {}
|
||||
}
|
||||
|
||||
property Component walletpassword: Component {
|
||||
WCWalletPassword {}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Component.onCompleted: {
|
||||
_setWizardData({})
|
||||
var start = _loadNextComponent(components.walletname)
|
||||
|
||||
@@ -1,44 +0,0 @@
|
||||
import QtQuick 2.6
|
||||
import QtQuick.Layouts 1.0
|
||||
import QtQuick.Controls 2.1
|
||||
import QtQuick.Controls.Material 2.0
|
||||
|
||||
import org.electrum 1.0
|
||||
|
||||
import "wizard"
|
||||
|
||||
Item {
|
||||
property Component walletname: Component {
|
||||
WCWalletName {}
|
||||
}
|
||||
|
||||
property Component wallettype: Component {
|
||||
WCWalletType {}
|
||||
}
|
||||
|
||||
property Component keystore: Component {
|
||||
WCKeystoreType {}
|
||||
}
|
||||
|
||||
property Component createseed: Component {
|
||||
WCCreateSeed {}
|
||||
}
|
||||
|
||||
property Component haveseed: Component {
|
||||
WCHaveSeed {}
|
||||
}
|
||||
|
||||
property Component confirmseed: Component {
|
||||
WCConfirmSeed {}
|
||||
}
|
||||
|
||||
property Component bip39refine: Component {
|
||||
WCBIP39Refine {}
|
||||
}
|
||||
|
||||
property Component walletpassword: Component {
|
||||
WCWalletPassword {}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user