| 292 | } |
| 293 | |
| 294 | int TransactionTableModel::rowCount(const QModelIndex &parent) const |
| 295 | { |
| 296 | if (parent.isValid()) { |
| 297 | return 0; |
| 298 | } |
| 299 | return priv->size(); |
| 300 | } |
| 301 | |
| 302 | int TransactionTableModel::columnCount(const QModelIndex &parent) const |
| 303 | { |