diff options
author | George Hazan <george.hazan@gmail.com> | 2013-03-28 14:55:49 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-03-28 14:55:49 +0000 |
commit | 056d2be888a4235a109a123b7b2a715aa3ff72ba (patch) | |
tree | b1956081bb951f44ced81414db7656a832613b71 /plugins/UserInfoEx/src/ctrl_combo.h | |
parent | 5f03619d3bbda7a617f50ded2698cffc434dd525 (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@4225 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx/src/ctrl_combo.h')
-rw-r--r-- | plugins/UserInfoEx/src/ctrl_combo.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/UserInfoEx/src/ctrl_combo.h b/plugins/UserInfoEx/src/ctrl_combo.h index 3d6accf853..5e0db3b196 100644 --- a/plugins/UserInfoEx/src/ctrl_combo.h +++ b/plugins/UserInfoEx/src/ctrl_combo.h @@ -27,9 +27,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. **/
class CCombo : public CBaseCtrl
{
- INT _curSel;
+ int _curSel;
LPIDSTRLIST _pList;
- INT _nList;
+ int _nList;
BYTE _bDataType;
/**
@@ -40,10 +40,10 @@ class CCombo : public CBaseCtrl *
* @return nothing
**/
- CCombo(HWND hDlg, WORD idCtrl, LPCSTR pszSetting, BYTE bDBDataType, LPIDSTRLIST pList, INT nListCount);
+ CCombo(HWND hDlg, WORD idCtrl, LPCSTR pszSetting, BYTE bDBDataType, LPIDSTRLIST pList, int nListCount);
- INT Find(INT nIndex) const;
- INT Find(LPTSTR ptszItemLabel) const;
+ int Find(int nIndex) const;
+ int Find(LPTSTR ptszItemLabel) const;
INT_PTR AddItem(LPCTSTR pszText, LPARAM lParam);
@@ -58,12 +58,12 @@ public: static FORCEINLINE CCombo* GetObj(HWND hDlg, WORD idCtrl)
{ return GetObj(GetDlgItem(hDlg, idCtrl)); }
- static CBaseCtrl* CreateObj(HWND hDlg, WORD idCtrl, LPCSTR pszSetting, BYTE bDBDataType, LPIDSTRLIST pList, INT nListCount);
+ static CBaseCtrl* CreateObj(HWND hDlg, WORD idCtrl, LPCSTR pszSetting, BYTE bDBDataType, LPIDSTRLIST pList, int nListCount);
- virtual VOID Release();
+ virtual void Release();
virtual BOOL OnInfoChanged(HANDLE hContact, LPCSTR pszProto);
- virtual VOID OnApply(HANDLE hContact, LPCSTR pszProto);
- virtual VOID OnChangedByUser(WORD wChangedMsg);
+ virtual void OnApply(HANDLE hContact, LPCSTR pszProto);
+ virtual void OnChangedByUser(WORD wChangedMsg);
};
#endif /* _UI_CTRL_COMBO_INCLUDE_ */
\ No newline at end of file |