diff options
Diffstat (limited to 'plugins/UserInfoEx/src/ctrl_combo.h')
-rw-r--r-- | plugins/UserInfoEx/src/ctrl_combo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/UserInfoEx/src/ctrl_combo.h b/plugins/UserInfoEx/src/ctrl_combo.h index 618a5441fa..fccd1b9e64 100644 --- a/plugins/UserInfoEx/src/ctrl_combo.h +++ b/plugins/UserInfoEx/src/ctrl_combo.h @@ -53,9 +53,9 @@ public: *
*
**/
- static FORCEINLINE CCombo* GetObj(HWND hCtrl)
+ static __forceinline CCombo* GetObj(HWND hCtrl)
{ return (CCombo*) GetUserData(hCtrl); }
- static FORCEINLINE CCombo* GetObj(HWND hDlg, uint16_t idCtrl)
+ static __forceinline CCombo* GetObj(HWND hDlg, uint16_t idCtrl)
{ return GetObj(GetDlgItem(hDlg, idCtrl)); }
static CBaseCtrl* CreateObj(HWND hDlg, uint16_t idCtrl, LPCSTR pszSetting, uint8_t bDBDataType, LPIDSTRLIST pList, int nListCount);
|