mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-12 21:22:31 +00:00
* Fixed an un-initialized pointer bug in ui::ElementStringList.
* Properly hide epoll stuff inside an USE_EPOLL if/else macro. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@518 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
@@ -48,7 +48,6 @@ namespace ui {
|
||||
ElementLogComplete::ElementLogComplete(core::Log* l) :
|
||||
m_window(NULL),
|
||||
m_log(l) {
|
||||
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
@@ -43,9 +43,8 @@
|
||||
|
||||
namespace ui {
|
||||
|
||||
ElementStringList::ElementStringList() {
|
||||
m_list.push_back("Test string 1");
|
||||
m_list.push_back("Test string 2");
|
||||
ElementStringList::ElementStringList() :
|
||||
m_window(NULL) {
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user