diff options
author | George Hazan <ghazan@miranda.im> | 2019-01-18 23:14:19 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-01-18 23:14:19 +0300 |
commit | c2e2c85262148dcf71450dfd3c7b33ef41eb84ec (patch) | |
tree | fe21b2d7677f955168dee25b4fea722dcd06c924 /plugins/HistoryStats/src/contact.h | |
parent | e3bea6d9c261c87d7f67ecc06392c0d0cd4fe2dc (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.h')
-rw-r--r-- | plugins/HistoryStats/src/contact.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/HistoryStats/src/contact.h b/plugins/HistoryStats/src/contact.h index 5d73f1c91d..719a2b4a21 100644 --- a/plugins/HistoryStats/src/contact.h +++ b/plugins/HistoryStats/src/contact.h @@ -36,7 +36,6 @@ private: DWORD m_FirstTime;
DWORD m_LastTime;
InOut m_Files;
- InOut m_Urls;
int m_NumContacts;
int m_NumSubcontacts;
@@ -94,9 +93,6 @@ public: DWORD getLastTime() const { return m_LastTime; }
// files and URLs
- int getOutUrls() const { return m_Urls.out; }
- int getInUrls() const { return m_Urls.in; }
- int getTotalUrls() const { return m_Urls.total(); }
int getOutFiles() const { return m_Files.out; }
int getInFiles() const { return m_Files.in; }
int getTotalFiles() const { return m_Files.total(); }
|