Update of /cvsroot/mahogany/M/src/classes
In directory sc8-pr-cvs1:/tmp/cvs-serv29342/src/classes

Modified Files:
        ListReceiver.cpp MApplication.cpp MessageView.cpp 
Log Message:
unicode fixes - it links now

Index: ListReceiver.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/classes/ListReceiver.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -b -u -2 -r1.4 -r1.5
--- ListReceiver.cpp    19 Sep 2003 13:31:20 -0000      1.4
+++ ListReceiver.cpp    13 Oct 2003 00:41:13 -0000      1.5
@@ -111,5 +111,5 @@
       }
 
-      const char delim = result->GetDelimiter();
+      const wxChar delim = result->GetDelimiter();
 
       // we don't want the leading slash, if any

Index: MApplication.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/classes/MApplication.cpp,v
retrieving revision 1.281
retrieving revision 1.282
diff -b -u -2 -r1.281 -r1.282
--- MApplication.cpp    12 Oct 2003 01:41:21 -0000      1.281
+++ MApplication.cpp    13 Oct 2003 00:41:13 -0000      1.282
@@ -281,7 +281,8 @@
    if ( !READ_APPCONFIG(MP_DONTOPENSTARTUP) )
    {
-      wxChar *folders = strutil_strdup(READ_APPCONFIG(MP_OPENFOLDERS));
+      String foldersToReopen = READ_APPCONFIG(MP_OPENFOLDERS);
+      char *folders = strutil_strdup(wxConvertWX2MB(foldersToReopen));
       kbStringList openFoldersList;
-      strutil_tokenise(folders, _T(";"), openFoldersList);
+      strutil_tokenise(folders, ";", openFoldersList);
       delete [] folders;
 

Index: MessageView.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/classes/MessageView.cpp,v
retrieving revision 1.142
retrieving revision 1.143
diff -b -u -2 -r1.142 -r1.143
--- MessageView.cpp     12 Oct 2003 17:24:19 -0000      1.142
+++ MessageView.cpp     13 Oct 2003 00:41:13 -0000      1.143
@@ -2504,8 +2504,9 @@
    {
       kbStringList faxdomains;
-      wxChar *faxlisting = strutil_strdup(READ_CONFIG(profile,
-                                                    MP_INCFAX_DOMAINS));
-      strutil_tokenise(faxlisting, _T(":;,"), faxdomains);
+      String faxListing = READ_CONFIG(profile, MP_INCFAX_DOMAINS);
+      char *faxlisting = strutil_strdup(wxConvertWX2MB(faxListing));
+      strutil_tokenise(faxlisting, ":;,", faxdomains);
       delete [] faxlisting;
+
       bool isfax = false;
       wxString domain;



-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to