| 84 | } |
| 85 | |
| 86 | QVariant |
| 87 | BookmarkTableModel::headerData(int s, Qt::Orientation hor, int role) const |
| 88 | { |
| 89 | if (hor == Qt::Horizontal && role == Qt::DisplayRole) { |
| 90 | const char *headers[] = { |
| 91 | "Frequency", |
| 92 | "Bandwidth", |
| 93 | "Modulation", |
| 94 | "Color", |
| 95 | "Name", |
| 96 | "", |
| 97 | ""}; |
| 98 | |
| 99 | if (s >= 0 && s < 7) |
| 100 | return headers[s]; |
| 101 | } |
| 102 | |
| 103 | return QVariant(); |
| 104 | } |
| 105 | |
| 106 | void |
| 107 | BookmarkTableModel::notifyChanged(void) |
nothing calls this directly
no outgoing calls
no test coverage detected