diff options
author | George Hazan <george.hazan@gmail.com> | 2013-07-21 11:53:52 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-07-21 11:53:52 +0000 |
commit | e398ab10b327757fdc1ea37da21cb401f4d5d5e5 (patch) | |
tree | e069d5ed3f2c879c15c24e712e10e6516c91a9fa | |
parent | dc7afe060450b16690b58ef6d68ccf9b769059cd (diff) |
fix for the message description
git-svn-id: http://svn.miranda-ng.org/main/trunk@5442 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | include/m_button.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_button.h b/include/m_button.h index e743bd61c9..c547912fb3 100644 --- a/include/m_button.h +++ b/include/m_button.h @@ -57,8 +57,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // Sets a tooltip for the button v0.3.3+
// wParam = (WPARAM)(char *)szTip
-// lParam = 0 (unused)
-// Usage: SendMessage(hwndButton, BUTTONADDTOOLTIP, (WPARAM)"My Tip", BATF_* flags);
+// lParam = BATF_* flags combination
+// Usage: SendMessage(hwndButton, BUTTONADDTOOLTIP, (WPARAM)TranslateT("My Tip"), BATF_TCHAR);
#define BATF_UNICODE 1
#if defined(_UNICODE)
#define BATF_TCHAR BATF_UNICODE
|