diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-07-15 15:05:42 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-07-15 15:05:42 +0000 |
commit | 2ffd7a1ac8fcb181bebaf3e8f4f21a9a102119fd (patch) | |
tree | aabd7b3adce29e164cfc2842c0a6b25191060e45 | |
parent | 9d5d961b038d87f779952be0298ca73681c14a58 (diff) |
utf8 fixes
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@286 4f64403b-2f21-0410-a795-97e2b3489a10
-rw-r--r-- | metacontacts/MetaContacts.mdsp | 6 | ||||
-rw-r--r-- | metacontacts/meta_services.c | 2 | ||||
-rw-r--r-- | metacontacts/metacontacts.h | 2 | ||||
-rw-r--r-- | metacontacts/version.h | 2 |
4 files changed, 7 insertions, 5 deletions
diff --git a/metacontacts/MetaContacts.mdsp b/metacontacts/MetaContacts.mdsp index 700f5fb..f026a7a 100644 --- a/metacontacts/MetaContacts.mdsp +++ b/metacontacts/MetaContacts.mdsp @@ -104,7 +104,7 @@ meta_main.c,4980 edit.c,4303
metacontacts.h,1021
addto.c,1011
-..\..\include\m_utils.h,12800
+..\..\include\m_utils.h,12790
meta_api.c,9173
-meta_services.c,7878
-meta_utils.c,31710
+meta_services.c,7865
+meta_utils.c,31679
diff --git a/metacontacts/meta_services.c b/metacontacts/meta_services.c index 796e2f8..b2a9ed7 100644 --- a/metacontacts/meta_services.c +++ b/metacontacts/meta_services.c @@ -392,6 +392,8 @@ int Meta_SendMessage(WPARAM wParam,LPARAM lParam) dbei.flags = DBEF_SENT;
dbei.timestamp = time(NULL);
dbei.eventType = EVENTTYPE_MESSAGE;
+ if(ccs->wParam & PREF_RTL) dbei.flags |= DBEF_RTL;
+ if(ccs->wParam & PREF_UTF) dbei.flags |= DBEF_UTF;
dbei.cbBlob = strlen((char *)ccs->lParam) + 1;
if ( ccs->wParam & PREF_UNICODE )
dbei.cbBlob *= ( sizeof( wchar_t )+1 );
diff --git a/metacontacts/metacontacts.h b/metacontacts/metacontacts.h index 22f77d6..ba08edc 100644 --- a/metacontacts/metacontacts.h +++ b/metacontacts/metacontacts.h @@ -65,7 +65,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "../../include/m_ignore.h"
#include "../../include/m_langpack.h"
#include "../../include/m_popup.h"
-#include "../mwclist/CLUIFrames/m_cluiframes.h"
+#include "../../include/m_cluiframes.h"
#include "../updater/m_updater.h"
#define META_PROTO "MetaContacts"
diff --git a/metacontacts/version.h b/metacontacts/version.h index f29c211..723e3c2 100644 --- a/metacontacts/version.h +++ b/metacontacts/version.h @@ -5,7 +5,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 13
#define __RELEASE_NUM 0
-#define __BUILD_NUM 6
+#define __BUILD_NUM 8
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
|