summaryrefslogtreecommitdiff
path: root/plugins/HistoryStats/src/contact.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-01-18 23:14:19 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-01-18 23:14:19 +0300
commitc2e2c85262148dcf71450dfd3c7b33ef41eb84ec (patch)
treefe21b2d7677f955168dee25b4fea722dcd06c924 /plugins/HistoryStats/src/contact.cpp
parente3bea6d9c261c87d7f67ecc06392c0d0cd4fe2dc (diff)
code cleaning
- ACKTYPE_URL removed; - PF1_URL removed; - IEED_EVENT_URL removed; - another URL-related code cleaning
Diffstat (limited to 'plugins/HistoryStats/src/contact.cpp')
-rw-r--r--plugins/HistoryStats/src/contact.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/plugins/HistoryStats/src/contact.cpp b/plugins/HistoryStats/src/contact.cpp
index 8a03c1b746..433ec64da9 100644
--- a/plugins/HistoryStats/src/contact.cpp
+++ b/plugins/HistoryStats/src/contact.cpp
@@ -19,7 +19,6 @@ Contact::Contact(Statistic* pStatistic, int nSlots, const ext::string& nick, con
m_ChatDurMin(0xFFFFFFFF),
m_ChatDurMax(0),
m_ChatDurSum(0),
- m_Urls(0, 0),
m_Files(0, 0),
m_NumContacts(nContacts),
m_NumSubcontacts(nSubcontacts),
@@ -89,10 +88,6 @@ void Contact::addEvent(WORD eventType, bool bOutgoing)
InOut* pIO = nullptr;
switch (eventType) {
- case EVENTTYPE_URL:
- pIO = &m_Urls;
- break;
-
case EVENTTYPE_FILE:
pIO = &m_Files;
break;
@@ -135,7 +130,6 @@ void Contact::merge(const Contact& other)
}
m_Files += other.m_Files;
- m_Urls += other.m_Urls;
m_NumContacts += other.m_NumContacts;
m_NumSubcontacts += other.m_NumSubcontacts;