diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-04-26 04:46:04 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-04-26 04:46:04 +0000 |
commit | b668c691db2fb618029ae031a4be72d15155fdb1 (patch) | |
tree | b30a544b22a66003d579057b9d4c15708bd755ac | |
parent | 55a944b86166c4b863cd1a17c39b160e03e1a3f5 (diff) |
woops - use pre->flags for unicode detection in filter recv function
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@152 4f64403b-2f21-0410-a795-97e2b3489a10
-rw-r--r-- | MirandaPlugin/Templates/1033/filter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MirandaPlugin/Templates/1033/filter.cpp b/MirandaPlugin/Templates/1033/filter.cpp index 56543b3..e390508 100644 --- a/MirandaPlugin/Templates/1033/filter.cpp +++ b/MirandaPlugin/Templates/1033/filter.cpp @@ -28,7 +28,7 @@ int FilterRecvMessage(WPARAM wParam, LPARAM lParam) { char *message = pre->szMessage;
// TODO: process 'message' and/or 'messagew' below
- if(ccs->wParam & PREF_UNICODE) {
+ if(pre->flags & PREF_UNICODE) {
wchar_t *messagew = (wchar_t *)&message[strlen(message)+1];
} else {
}
|