Removed unused member variables.

This commit is contained in:
rakshasa
2013-02-26 17:40:41 +09:00
parent 5e6cb5da04
commit 2c97841e92
3 changed files with 1 additions and 7 deletions
-3
View File
@@ -97,9 +97,6 @@ public:
void set_event_added(const std::string& name, const torrent::Object& cmd) { (*find_throw(name))->set_event_added(cmd); }
void set_event_removed(const std::string& name, const torrent::Object& cmd) { (*find_throw(name))->set_event_removed(cmd); }
private:
DownloadList* m_list;
};
}
+1 -2
View File
@@ -50,8 +50,7 @@ namespace display {
WindowDownloadTransferList::WindowDownloadTransferList(core::Download* d, unsigned int *focus) :
Window(new Canvas, 0, 0, 0, extent_full, extent_full),
m_download(d),
m_focus(focus) {
m_download(d) {
}
void
@@ -71,8 +71,6 @@ private:
char key_id(torrent::BlockTransfer::key_type key);
core::Download* m_download;
unsigned int* m_focus;
assigned_vector m_assigned;
};