Skip to content

Commit

Permalink
Bitcoin-Qt: comment out unused parameter in addressbookpage
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Kaufmann committed Dec 15, 2012
1 parent da8c5c9 commit a8fbbd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/qt/addressbookpage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ void AddressBookPage::contextualMenu(const QPoint &point)
}
}

void AddressBookPage::selectNewAddress(const QModelIndex &parent, int begin, int end)
void AddressBookPage::selectNewAddress(const QModelIndex &parent, int begin, int /*end*/)
{
QModelIndex idx = proxyModel->mapFromSource(model->index(begin, AddressTableModel::Address, parent));
if(idx.isValid() && (idx.data(Qt::EditRole).toString() == newAddressToSelect))
Expand Down
2 changes: 1 addition & 1 deletion src/qt/addressbookpage.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ private slots:
void onEditAction();

/** New entry/entries were added to address table */
void selectNewAddress(const QModelIndex &parent, int begin, int end);
void selectNewAddress(const QModelIndex &parent, int begin, int /*end*/);

signals:
void signMessage(QString addr);
Expand Down

0 comments on commit a8fbbd8

Please sign in to comment.