| 146 | } |
| 147 | |
| 148 | HistoryItem CHistoryModel::getItem(const QModelIndex &index) const |
| 149 | { |
| 150 | if (index.isValid() && index.row() < m_historyItems.count()) { |
| 151 | return m_historyItems.at(index.row()); |
| 152 | } |
| 153 | return HistoryItem(); |
| 154 | } |
| 155 | |
| 156 | bool CHistoryModel::removeDomainItems(const QString &szDomain) |
| 157 | { |
no test coverage detected