Changeset 1022 for trunk/rtorrent/src/main.cc
- Timestamp:
- 12/23/07 14:12:23 (4 years ago)
- Files:
-
- 1 modified
-
trunk/rtorrent/src/main.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/rtorrent/src/main.cc
r1020 r1022 102 102 load_session_torrents(Control* c) { 103 103 // Load session torrents. 104 std:: list<std::string> l = c->core()->download_store()->get_formated_entries().make_list();105 106 for (std:: list<std::string>::iterator first = l.begin(), last = l.end(); first != last; ++first) {104 std::vector<std::string> l = c->core()->download_store()->get_formated_entries().make_list(); 105 106 for (std::vector<std::string>::iterator first = l.begin(), last = l.end(); first != last; ++first) { 107 107 core::DownloadFactory* f = new core::DownloadFactory(c->core()); 108 108
