diff options
author | Andrew Chow <achow101@gmail.com> | 2016-10-03 19:40:40 -0400 |
---|---|---|
committer | Andrew Chow <achow101@gmail.com> | 2016-11-08 08:50:04 -0500 |
commit | addfdebe1a2ec45f718638f39a9ae3afb531805f (patch) | |
tree | 1c8567526b0eac7767dd40f0c115c38bc1ebd995 /src/qt/guiutil.h | |
parent | 4e5782438c3d117be7e52ddd0d35ae0475a30759 (diff) |
Multiple Selection for peer and ban tables
Allows multiple selection and action for the nodes in the peer and ban tables in the Debug Window.
Diffstat (limited to 'src/qt/guiutil.h')
-rw-r--r-- | src/qt/guiutil.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index e28f68930f..64cbd51eb6 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -67,10 +67,9 @@ namespace GUIUtil /** Return a field of the currently selected entry as a QString. Does nothing if nothing is selected. @param[in] column Data column to extract from the model - @param[in] role Data role to extract from the model @see TransactionView::copyLabel, TransactionView::copyAmount, TransactionView::copyAddress */ - QVariant getEntryData(QAbstractItemView *view, int column, int role); + QList<QModelIndex> getEntryData(QAbstractItemView *view, int column); void setClipboard(const QString& str); |