Fixed a mispelled name in utils::for_each_pre(...).

git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@333 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2005-03-07 20:49:16 +00:00
parent 209581bd3f
commit f379abb200
5 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
AC_INIT(rtorrent, 0.1.1, jaris@ifi.uio.no)
AC_INIT(rtorrent, 0.1.2, jaris@ifi.uio.no)
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER(config.h)
@@ -39,7 +39,7 @@ TORRENT_CHECK_EXECINFO()
TORRENT_CHECK_CURL()
TORRENT_OTFD()
PKG_CHECK_MODULES(STUFF, sigc++-2.0 libtorrent >= 0.5.0,
PKG_CHECK_MODULES(STUFF, sigc++-2.0 libtorrent >= 0.5.1,
CXXFLAGS="$CXXFLAGS $STUFF_CFLAGS $CURL_CFLAGS";
LIBS="$LIBS $STUFF_LIBS $CURL_LIBS")
+1 -1
View File
@@ -26,7 +26,7 @@ WindowDownloadList::redraw() {
typedef std::pair<DList::iterator, DList::iterator> Range;
Range range = utils::iterate_both_distance(m_list->begin(),
Range range = utils::advance_bidirectional(m_list->begin(),
*m_focus != m_list->end() ? *m_focus : m_list->begin(),
m_list->end(),
m_canvas->get_height() / 3);
+1 -1
View File
@@ -37,7 +37,7 @@ WindowFileList::redraw() {
typedef std::pair<unsigned int, unsigned int> Range;
Range range = utils::iterate_both_distance<unsigned int>(0, *m_focus, m_download->get_download().get_entry_size(),
Range range = utils::advance_bidirectional<unsigned int>(0, *m_focus, m_download->get_download().get_entry_size(),
m_canvas->get_height());
while (range.first != range.second) {
+1 -1
View File
@@ -42,7 +42,7 @@ WindowPeerList::redraw() {
typedef std::pair<PList::iterator, PList::iterator> Range;
Range range = utils::iterate_both_distance(m_list->begin(),
Range range = utils::advance_bidirectional(m_list->begin(),
*m_focus != m_list->end() ? *m_focus : m_list->begin(),
m_list->end(),
m_canvas->get_height() - y);
+2 -2
View File
@@ -11,7 +11,7 @@ for_each_pre(_InputIter __first, _InputIter __last, _Function __f) {
_InputIter __tmp;
while (__first != __last) {
__tmp = first++;
__tmp = __first++;
__f(*__tmp);
}
@@ -23,7 +23,7 @@ for_each_pre(_InputIter __first, _InputIter __last, _Function __f) {
// between __first and __last, centered on __middle1.
template <typename _InputIter, typename _Distance>
std::pair<_InputIter, _InputIter>
iterate_both_distance(_InputIter __first, _InputIter __middle1, _InputIter __last, _Distance __distance) {
advance_bidirectional(_InputIter __first, _InputIter __middle1, _InputIter __last, _Distance __distance) {
_InputIter __middle2 = __middle1;
do {