diff options
author | George Hazan <george.hazan@gmail.com> | 2016-08-08 08:19:59 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-08-08 08:19:59 +0000 |
commit | b69451fd2e4166cfa7aad6b96047c70f7545eadc (patch) | |
tree | ecd5e75d88b6386cbe7de766ac8774313722b270 /plugins/TabSRMM/src/contactcache.h | |
parent | cd3898d8ea6f3fc53950f91544c1db2ee86c60d6 (diff) |
- warning fixes;
- more cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@17168 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/contactcache.h')
-rw-r--r-- | plugins/TabSRMM/src/contactcache.h | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/plugins/TabSRMM/src/contactcache.h b/plugins/TabSRMM/src/contactcache.h index 769654ac7e..0c3ce81892 100644 --- a/plugins/TabSRMM/src/contactcache.h +++ b/plugins/TabSRMM/src/contactcache.h @@ -99,36 +99,37 @@ struct CContactCache : public MZeroedObject ////////////////////////////////////////////////////////////////////////////
- void updateState();
- bool updateNick();
- void updateMeta();
- bool updateUIN();
- void updateStatusMsg(const char *szKey = 0);
- void setWindowData(const HWND hwnd = 0, TWindowData *dat = 0);
- void resetMeta();
- void closeWindow();
- void deletedHandler();
- void updateFavorite();
+ void updateStatus();
+ void updateState();
+ bool updateNick();
+ void updateMeta();
+ bool updateUIN();
+ void updateStatusMsg(const char *szKey = 0);
+ void setWindowData(const HWND hwnd = 0, TWindowData *dat = 0);
+ void resetMeta();
+ void closeWindow();
+ void deletedHandler();
+ void updateFavorite();
wchar_t* getNormalizedStatusMsg(const wchar_t *src, bool fStripAll = false);
- HICON getIcon(int& iSize) const;
+ HICON getIcon(int& iSize) const;
/*
* input history
*/
- void saveHistory(WPARAM wParam, LPARAM lParam);
- void inputHistoryEvent(WPARAM wParam);
+ void saveHistory(WPARAM wParam, LPARAM lParam);
+ void inputHistoryEvent(WPARAM wParam);
static CContactCache* getContactCache(MCONTACT hContact);
static int cacheUpdateMetaChanged(WPARAM wParam, LPARAM lParam);
private:
- void allocStats();
- void initPhaseTwo();
- void allocHistory();
- void releaseAlloced();
+ void allocStats();
+ void initPhaseTwo();
+ void allocHistory();
+ void releaseAlloced();
MCONTACT m_hContact, m_hSub;
- WORD m_wOldStatus, m_wMetaStatus;
+ WORD m_wStatus, m_wOldStatus, m_wMetaStatus;
char *m_szMetaProto;
wchar_t *m_szAccount;
wchar_t m_szNick[80], m_szUIN[80];
|