summaryrefslogtreecommitdiff
path: root/protocols/Weather/src/proto.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Weather/src/proto.h')
-rw-r--r--protocols/Weather/src/proto.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/protocols/Weather/src/proto.h b/protocols/Weather/src/proto.h
index 3a42f47e5d..271504f665 100644
--- a/protocols/Weather/src/proto.h
+++ b/protocols/Weather/src/proto.h
@@ -1,11 +1,5 @@
#pragma once
-struct UPDATELIST
-{
- MCONTACT hContact;
- UPDATELIST *next;
-};
-
struct WEATHERINFO
{
MCONTACT hContact;
@@ -191,7 +185,7 @@ class CWeatherProto : public PROTO<CWeatherProto>
void __cdecl BasicSearchThread(void *);
// update weather
- UPDATELIST *UpdateListHead = nullptr, *UpdateListTail = nullptr;
+ std::vector<MCONTACT> m_updateList;
// check if weather is currently updating
bool m_bThreadRunning;