Up and down on the download list working.

git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@250 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2005-02-01 15:26:24 +00:00
parent cd9b014eb6
commit 0ff36babee
14 changed files with 95 additions and 25 deletions
+11
View File
@@ -2,12 +2,23 @@
#include <algorithm>
#include <functional>
#include <stdexcept>
#include "manager.h"
#include "bindings.h"
namespace input {
void
Manager::erase(Bindings* b) {
iterator itr = std::find(begin(), end(), b);
if (itr == end())
throw std::logic_error("Manager::erase(...) could not find binding");
Base::erase(itr);
}
void
Manager::pressed(int key) {
std::find_if(begin(), end(), std::bind2nd(std::mem_fun(&Bindings::pressed), key));