danicoinwallet/src/gui/NewAddressDialog.cpp
2015-04-30 15:11:48 +03:00

28 lines
635 B
C++

// Copyright (c) 2011-2015 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "NewAddressDialog.h"
#include "ui_newaddressdialog.h"
namespace WalletGui {
NewAddressDialog::NewAddressDialog(QWidget* _parent) : QDialog(_parent), m_ui(new Ui::NewAddressDialog) {
m_ui->setupUi(this);
}
NewAddressDialog::~NewAddressDialog() {
}
QString NewAddressDialog::getAddress() const {
return m_ui->m_addressEdit->text();
}
QString NewAddressDialog::getLabel() const {
return m_ui->m_labelEdit->text();
}
}