qt: Remove obsolete QModelIndex::child()
The QModelIndex::child() member function is obsolete since Qt 5.12.
This commit is contained in:
parent
3ca514ddb7
commit
c53667764e
2 changed files with 2 additions and 2 deletions
|
@ -261,7 +261,7 @@ void ReceiveCoinsDialog::copyColumnToClipboard(int column)
|
|||
if (!firstIndex.isValid()) {
|
||||
return;
|
||||
}
|
||||
GUIUtil::setClipboard(model->getRecentRequestsTableModel()->data(firstIndex.child(firstIndex.row(), column), Qt::EditRole).toString());
|
||||
GUIUtil::setClipboard(model->getRecentRequestsTableModel()->index(firstIndex.row(), column).data(Qt::EditRole).toString());
|
||||
}
|
||||
|
||||
// context menu
|
||||
|
|
|
@ -76,7 +76,7 @@ public:
|
|||
QVariant data(const QModelIndex &index, int role) const;
|
||||
bool setData(const QModelIndex &index, const QVariant &value, int role);
|
||||
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
|
||||
QModelIndex index(int row, int column, const QModelIndex &parent) const;
|
||||
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
|
||||
bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex());
|
||||
Qt::ItemFlags flags(const QModelIndex &index) const;
|
||||
/*@}*/
|
||||
|
|
Loading…
Reference in a new issue