* 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
+3
View File
@@ -4,15 +4,18 @@ SUBDIRS = \
EXTRA_DIST= \
autogen.sh \
rak/address_info.h \
rak/algorithm.h \
rak/error_number.h \
rak/file_stat.h \
rak/functional.h \
rak/functional_fun.h \
rak/path.h \
rak/partial_queue.h \
rak/priority_queue.h \
rak/priority_queue_default.h \
rak/regex.h \
rak/socket_address.h \
rak/string_manip.h \
rak/timer.h \
rak/unordered_vector.h \
+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;