remove debug stuff for implemented methods
This commit is contained in:
parent
992ff49b43
commit
fb7e2901b7
1 changed files with 0 additions and 6 deletions
|
@ -201,14 +201,12 @@ QWidget *BitcoinGUI::createTabs()
|
||||||
|
|
||||||
void BitcoinGUI::sendcoinsClicked()
|
void BitcoinGUI::sendcoinsClicked()
|
||||||
{
|
{
|
||||||
qDebug() << "Send coins clicked";
|
|
||||||
SendCoinsDialog dlg;
|
SendCoinsDialog dlg;
|
||||||
dlg.exec();
|
dlg.exec();
|
||||||
}
|
}
|
||||||
|
|
||||||
void BitcoinGUI::addressbookClicked()
|
void BitcoinGUI::addressbookClicked()
|
||||||
{
|
{
|
||||||
qDebug() << "Address book clicked";
|
|
||||||
AddressBookDialog dlg;
|
AddressBookDialog dlg;
|
||||||
dlg.setTab(AddressBookDialog::SendingTab);
|
dlg.setTab(AddressBookDialog::SendingTab);
|
||||||
/* if an address accepted, do a 'send' to specified address */
|
/* if an address accepted, do a 'send' to specified address */
|
||||||
|
@ -221,7 +219,6 @@ void BitcoinGUI::addressbookClicked()
|
||||||
|
|
||||||
void BitcoinGUI::receivingAddressesClicked()
|
void BitcoinGUI::receivingAddressesClicked()
|
||||||
{
|
{
|
||||||
qDebug() << "Receiving addresses clicked";
|
|
||||||
AddressBookDialog dlg;
|
AddressBookDialog dlg;
|
||||||
dlg.setTab(AddressBookDialog::ReceivingTab);
|
dlg.setTab(AddressBookDialog::ReceivingTab);
|
||||||
dlg.exec();
|
dlg.exec();
|
||||||
|
@ -229,14 +226,12 @@ void BitcoinGUI::receivingAddressesClicked()
|
||||||
|
|
||||||
void BitcoinGUI::optionsClicked()
|
void BitcoinGUI::optionsClicked()
|
||||||
{
|
{
|
||||||
qDebug() << "Options clicked";
|
|
||||||
OptionsDialog dlg;
|
OptionsDialog dlg;
|
||||||
dlg.exec();
|
dlg.exec();
|
||||||
}
|
}
|
||||||
|
|
||||||
void BitcoinGUI::aboutClicked()
|
void BitcoinGUI::aboutClicked()
|
||||||
{
|
{
|
||||||
qDebug() << "About clicked";
|
|
||||||
AboutDialog dlg;
|
AboutDialog dlg;
|
||||||
dlg.exec();
|
dlg.exec();
|
||||||
}
|
}
|
||||||
|
@ -249,7 +244,6 @@ void BitcoinGUI::newAddressClicked()
|
||||||
|
|
||||||
void BitcoinGUI::copyClipboardClicked()
|
void BitcoinGUI::copyClipboardClicked()
|
||||||
{
|
{
|
||||||
qDebug() << "Copy to clipboard";
|
|
||||||
/* Copy text in address to clipboard */
|
/* Copy text in address to clipboard */
|
||||||
QApplication::clipboard()->setText(address->text());
|
QApplication::clipboard()->setText(address->text());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue