* 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:
rakshasa
2005-08-07 17:57:58 +00:00
parent dc5476e3f4
commit 287dfbf334
2 changed files with 2 additions and 4 deletions
-1
View File
@@ -48,7 +48,6 @@ namespace ui {
ElementLogComplete::ElementLogComplete(core::Log* l) :
m_window(NULL),
m_log(l) {
}
void
+2 -3
View File
@@ -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