diff options
Diffstat (limited to 'addresstablemodel.cpp')
-rw-r--r-- | addresstablemodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addresstablemodel.cpp b/addresstablemodel.cpp index e8746c2b81..d985bcee3c 100644 --- a/addresstablemodel.cpp +++ b/addresstablemodel.cpp @@ -29,7 +29,7 @@ QVariant AddressTableModel::data(const QModelIndex &index, int role) const /* index.row(), index.column() */ /* Return QString */ if(index.column() == Address) - return "1PC9aZC4hNX2rmmrt7uHTfYAS3hRbph4UN"; + return "1PC9aZC4hNX2rmmrt7uHTfYAS3hRbph4UN" + QString::number(index.row()); else return "Description"; } else if (role == Qt::UserRole) |