Changeset 996
- Timestamp:
- 08/27/08 13:36:56 (4 months ago)
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/src/showlog.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r994 r996 1 1 Version 0.8.0 - released 2008-xx-xx 2 3 New Features 4 ------------ 5 * Logs can now filter by all columns. Select All to search in Revision, 6 Author, Date and Message. 2 7 3 8 trunk/src/showlog.cpp
r952 r996 92 92 m_logEntriesProxy->setDynamicSortFilter(true); 93 93 m_logEntriesProxy->setSourceModel(m_logEntriesModel); 94 comboBoxFilterKeyColumn->insertItem(0, tr("All")); 94 95 for (int i = 0; i < m_logEntriesModel->columnCount(QModelIndex()); i++) 95 96 comboBoxFilterKeyColumn->insertItem(comboBoxFilterKeyColumn->count(), … … 322 323 void ShowLog::on_comboBoxFilterKeyColumn_currentIndexChanged(int index) 323 324 { 324 m_logEntriesProxy->setFilterKeyColumn(index );325 m_logEntriesProxy->setFilterKeyColumn(index - 1); //first entry is the All-entry 325 326 } 326 327
