diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-08-08 06:57:14 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-08-08 06:57:14 +0000 |
commit | 4a0631399b72ff7a62ffc2da69150551e990e0d9 (patch) | |
tree | 636747c4083923dc96ebb8f0d06019746493b0da /plugins/UserInfoEx/src/ctrl_base.h | |
parent | 88a14e8dc56bb77b09e52c8aebe5cd6f47039366 (diff) |
UserInfoEx:
- Warnings fixed
git-svn-id: http://svn.miranda-ng.org/main/trunk@14857 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx/src/ctrl_base.h')
-rw-r--r-- | plugins/UserInfoEx/src/ctrl_base.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/UserInfoEx/src/ctrl_base.h b/plugins/UserInfoEx/src/ctrl_base.h index 28a8b5cf83..bb90bd691f 100644 --- a/plugins/UserInfoEx/src/ctrl_base.h +++ b/plugins/UserInfoEx/src/ctrl_base.h @@ -163,7 +163,7 @@ public: * @retval TRUE - the content was updated
* @retval FALSE - content not updated
**/
- virtual BOOL OnInfoChanged(MCONTACT hContact, LPCSTR pszProto) { return 0; }
+ virtual BOOL OnInfoChanged(MCONTACT, LPCSTR) { return 0; }
/**
* This is a pure virtual method, which is the common interface
@@ -174,7 +174,7 @@ public: *
* @return nothing
**/
- virtual void OnApply(MCONTACT hContact, LPCSTR pszProto) { }
+ virtual void OnApply(MCONTACT, LPCSTR) { }
/**
* This is a pure virtual method, which is called to set the
@@ -185,11 +185,11 @@ public: *
* @return nothing
**/
- virtual void OnChangedByUser(WORD wChangedMsg) { }
+ virtual void OnChangedByUser(WORD) { }
virtual void OnReset() { }
- INT_PTR OnSetTextColour(HDC hdc);
+ INT_PTR OnSetTextColour(HDC);
};
/***********************************************************************************************************
|