diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-08 12:53:27 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-08 12:53:35 +0300 |
commit | 1a6f8de0cfcff7500258b8b048b7216d5dc26dc9 (patch) | |
tree | 1d5ddb53464b80eff669603fb3e7171cb9e48a45 /plugins/TabSRMM/src/contactcache.h | |
parent | 69dbc8aac3c51e5ec4fdd16bb12f17071e0819df (diff) |
massive code cleaning
Diffstat (limited to 'plugins/TabSRMM/src/contactcache.h')
-rw-r--r-- | plugins/TabSRMM/src/contactcache.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/TabSRMM/src/contactcache.h b/plugins/TabSRMM/src/contactcache.h index d1f7e2ddb2..8dbe60e8d6 100644 --- a/plugins/TabSRMM/src/contactcache.h +++ b/plugins/TabSRMM/src/contactcache.h @@ -84,8 +84,6 @@ struct CContactCache : public MZeroedObject __forceinline LPCWSTR getXStatusMsg() const { return m_xStatusMsg; }
__forceinline LPCWSTR getListeningInfo() const { return m_ListeningInfo; }
__forceinline BYTE getXStatusId() const { return m_xStatus; }
- __forceinline HWND getWindowData(CSrmmWindow* &dat) const { dat = m_dat; return m_hwnd; }
- __forceinline HWND getHwnd() const { return m_hwnd; }
__forceinline DWORD getSessionStart() const { return m_stats->started; }
__forceinline int getSessionMsgCount() const { return (int)m_stats->messageCount; }
@@ -107,7 +105,7 @@ struct CContactCache : public MZeroedObject void updateMeta();
bool updateUIN();
void updateStatusMsg(const char *szKey = 0);
- void setWindowData(const HWND hwnd = 0, CSrmmWindow *dat = 0);
+ void setWindowData(CSrmmWindow *dat = 0);
void resetMeta();
void closeWindow();
void deletedHandler();
@@ -142,7 +140,6 @@ private: bool m_isValid;
bool m_isFavorite;
bool m_isRecent;
- HWND m_hwnd;
int m_nMax;
int m_iHistoryCurrent, m_iHistoryTop, m_iHistorySize;
|