コード例 #1
0
ファイル: walletstack.cpp プロジェクト: mybrocoin/mybrocoin
void WalletStack::unlockWallet()
{
    WalletView *walletView = (WalletView*)currentWidget();
    if (walletView) walletView->unlockWallet();
}
コード例 #2
0
void WalletFrame::unlockWallet()
{
    WalletView *walletView = currentWalletView();
    if (walletView)
        walletView->unlockWallet();
}
コード例 #3
0
void WalletFrame::unlockWallet(AskPassphraseDialog::Context context)
{
    WalletView* walletView = currentWalletView();
    if (walletView)
        walletView->unlockWallet(context);
}