* Added missing files in rtorrent/Makefile.am.

git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@666 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2006-04-06 17:51:17 +00:00
parent dc1f6d4f23
commit 7ad18cdac2
2 changed files with 7 additions and 2 deletions
+4 -2
View File
@@ -135,9 +135,11 @@ WindowFileList::redraw() {
done_percentage(e),
e.path()->encoding().c_str());
m_canvas->print(84, pos, "%i - %i",
m_canvas->print(84, pos, "%i - %i %c%c",
e.chunk_begin(),
e.chunk_begin() != e.chunk_end() ? (e.chunk_end() - 1) : e.chunk_end());
e.chunk_begin() != e.chunk_end() ? (e.chunk_end() - 1) : e.chunk_end(),
e.is_created() ? 'E' : 'M',
e.is_correct_size() ? 'C' : 'W');
++range.first;
++pos;