diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-11-09 09:24:30 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-11-09 11:05:15 +0100 |
commit | e9847303e708ab71b4d2c22ceb7d65c89615e18a (patch) | |
tree | 9d6e1c73a0e80f1c214d2f7a704dc0ac4d159e70 /src/qt/guiutil.h | |
parent | 924de0bd75a7f75df65d7d15f9d1587a2e794abf (diff) | |
parent | 1077577546334bc26daa3ab8580f24063a0b67c6 (diff) |
Merge #8874: Multiple Selection for peer and ban tables
1077577 Fix auto-deselection of peers (Andrew Chow)
addfdeb Multiple Selection for peer and ban tables (Andrew Chow)
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); |