diff options
Diffstat (limited to 'libktorrent/net/downloadthread.cpp')
-rw-r--r-- | libktorrent/net/downloadthread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libktorrent/net/downloadthread.cpp b/libktorrent/net/downloadthread.cpp index 2adf1a8..ae0f0b9 100644 --- a/libktorrent/net/downloadthread.cpp +++ b/libktorrent/net/downloadthread.cpp @@ -61,9 +61,9 @@ namespace net { // add to the correct group Uint32 gid = s->downloadGroupID(); - SocketGroup* g = groups.tqfind(gid); + SocketGroup* g = groups.find(gid); if (!g) - g = groups.tqfind(0); + g = groups.find(0); g->add(s); num_ready++; |