| 283 | } |
| 284 | |
| 285 | bool hasEntryData(const QAbstractItemView *view, int column, int role) |
| 286 | { |
| 287 | QModelIndexList selection = getEntryData(view, column); |
| 288 | if (selection.isEmpty()) return false; |
| 289 | return !selection.at(0).data(role).toString().isEmpty(); |
| 290 | } |
| 291 | |
| 292 | void LoadFont(const QString& file_name) |
| 293 | { |
no test coverage detected