diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-19 17:29:32 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-19 17:29:32 +0000 |
commit | fccc5aa6acfdd96bee86cd968e38aa516f523860 (patch) | |
tree | eb8fbc7e14c8d5736cf53b05ef38e6dab3081288 | |
parent | 524d1f65d5778e7b30ad5f8bc577e62091f2f6b0 (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@1046 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/SimpleStatusMsg/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SimpleStatusMsg/main.cpp b/plugins/SimpleStatusMsg/main.cpp index 7eb32be2aa..95212f4d59 100644 --- a/plugins/SimpleStatusMsg/main.cpp +++ b/plugins/SimpleStatusMsg/main.cpp @@ -1789,7 +1789,7 @@ static int CSStatusChange(WPARAM wParam, LPARAM lParam) char buff[80];
BOOL found = FALSE;
- wchar_t *szMsgW = mir_a2u(ps[i]->szMsg);
+ wchar_t *szMsgW = mir_t2u(ps[i]->szMsg);
#ifdef _DEBUG
|