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_base.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_base.h')
-rw-r--r-- | plugins/UserInfoEx/src/ctrl_base.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/UserInfoEx/src/ctrl_base.h b/plugins/UserInfoEx/src/ctrl_base.h index 8e422c53c8..d0bf2b50fb 100644 --- a/plugins/UserInfoEx/src/ctrl_base.h +++ b/plugins/UserInfoEx/src/ctrl_base.h @@ -48,7 +48,7 @@ typedef struct TCtrlInfo { } CTRL, *LPCTRL;
// for compatibility with old styled controls
-VOID Ctrl_InitTextColours();
+void Ctrl_InitTextColours();
INT_PTR CALLBACK Ctrl_SetTextColour(HDC hdc, WORD wFlags);
/***********************************************************************************************************
@@ -150,7 +150,7 @@ public: *
* @return nothing
**/
- virtual VOID Release() { }
+ virtual void Release() { }
/**
* This is a pure virtual method, which is the common interface
@@ -174,7 +174,7 @@ public: *
* @return nothing
**/
- virtual VOID OnApply(HANDLE hContact, LPCSTR pszProto) { }
+ virtual void OnApply(HANDLE hContact, LPCSTR pszProto) { }
/**
* This is a pure virtual method, which is called to set the
@@ -185,9 +185,9 @@ public: *
* @return nothing
**/
- virtual VOID OnChangedByUser(WORD wChangedMsg) { }
+ virtual void OnChangedByUser(WORD wChangedMsg) { }
- virtual VOID OnReset() { }
+ virtual void OnReset() { }
INT_PTR OnSetTextColour(HDC hdc);
};
@@ -218,11 +218,11 @@ public: static FORCEINLINE CCtrlList* GetObj(HWND hDlg)
{ return (CCtrlList*)GetUserData(hDlg); }
- VOID Release();
- VOID OnReset();
+ void Release();
+ void OnReset();
BOOL OnInfoChanged(HANDLE hContact, LPCSTR pszProto);
- VOID OnApply(HANDLE hContact, LPCSTR pszProto);
- VOID OnChangedByUser(WORD idCtrl, WORD wChangedMsg);
+ void OnApply(HANDLE hContact, LPCSTR pszProto);
+ void OnChangedByUser(WORD idCtrl, WORD wChangedMsg);
INT_PTR OnSetTextColour(HWND hCtrl, HDC hdc);
};
|