Changeset 1022 for trunk/rtorrent/src/ui/element_string_list.h
- Timestamp:
- 12/23/07 14:12:23 (4 years ago)
- Files:
-
- 1 modified
-
trunk/rtorrent/src/ui/element_string_list.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/rtorrent/src/ui/element_string_list.h
r938 r1022 74 74 } 75 75 76 // A hack, clean this up. 77 template <typename InputIter> 78 void set_range_dirent(InputIter first, InputIter last) { 79 m_list.clear(); 80 81 while (first != last) 82 m_list.push_back((first++)->d_name); 83 84 m_window->set_range(m_list.begin(), m_list.end()); 85 m_window->mark_dirty(); 86 } 87 76 88 void next_screen(); 77 89
