mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-12 21:22:31 +00:00
* Use varargs in Canvas::print.
* Added min/max size to display::Window. Added flags for windows that should be on located at the left/bottom side of a Frame. * Reversed print order in WindowLog*. * Added display::TextElement and subclasses for flexible printing to a char buffer with associated attributes. Added display::Attributes and display::Canvas::print_attributes. * Added display::WindowText for use with display::TextElement's. * Added ui::ElementMenu for generic menus, and started work adding this to ui::Download. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@751 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
@@ -38,7 +38,7 @@
|
||||
|
||||
#include <algorithm>
|
||||
#include <functional>
|
||||
#include <stdexcept>
|
||||
#include <torrent/exceptions.h>
|
||||
|
||||
#include "manager.h"
|
||||
#include "bindings.h"
|
||||
@@ -51,12 +51,12 @@ Manager::erase(Bindings* b) {
|
||||
iterator itr = std::find(begin(), end(), b);
|
||||
|
||||
if (itr == end())
|
||||
throw std::logic_error("Manager::erase(...) could not find binding");
|
||||
return;
|
||||
|
||||
Base::erase(itr);
|
||||
|
||||
if (std::find(begin(), end(), b) != end())
|
||||
throw std::logic_error("Manager::erase(...) found duplicate bindings");
|
||||
throw torrent::client_error("Manager::erase(...) found duplicate bindings.");
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user