Update of /cvsroot/mahogany/M/src/mail
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31255/src/mail
Modified Files:
ASMailFolder.cpp MFui.cpp MailFolder.cpp MailFolderCC.cpp
MailFolderCmn.cpp MailMH.cpp Message.cpp MessageCC.cpp
SendMessageCC.cpp VFolder.cpp
Log Message:
_T("") -> wxEmptyString
Index: ASMailFolder.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/ASMailFolder.cpp,v
retrieving revision 1.74
retrieving revision 1.75
diff -b -u -2 -r1.74 -r1.75
--- ASMailFolder.cpp 30 Jun 2005 23:39:48 -0000 1.74
+++ ASMailFolder.cpp 16 Jan 2006 20:32:28 -0000 1.75
@@ -558,5 +558,5 @@
{
int rc = m_Op == ASMailFolder::Op_SaveMessagesToFile
- ? m_MailFolder->SaveMessagesToFile(m_Seq, _T(""), m_Parent)
+ ? m_MailFolder->SaveMessagesToFile(m_Seq, wxEmptyString,
m_Parent)
: m_MailFolder->SaveMessages(m_Seq, m_Folder);
SendEvent(ASMailFolder::ResultInt::Create(m_ASMailFolder,
Index: MFui.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/MFui.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -b -u -2 -r1.5 -r1.6
--- MFui.cpp 12 Oct 2003 17:24:19 -0000 1.5
+++ MFui.cpp 16 Jan 2006 20:32:28 -0000 1.6
@@ -80,5 +80,5 @@
case MessageSize_Bytes:
- s.Printf(_("%lu%s"), sizeBytes, verbose ? _(" bytes") : _T(""));
+ s.Printf(_("%lu%s"), sizeBytes, verbose ? _(" bytes") :
wxEmptyString);
break;
Index: MailFolder.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/MailFolder.cpp,v
retrieving revision 1.317
retrieving revision 1.318
diff -b -u -2 -r1.317 -r1.318
--- MailFolder.cpp 19 Jul 2005 08:21:03 -0000 1.317
+++ MailFolder.cpp 16 Jan 2006 20:32:28 -0000 1.318
@@ -461,5 +461,5 @@
wxLogDebug(_T("Unknown URL scheme in List-Post (%s)"),
listPostHeader.c_str());
- return _T("");
+ return wxEmptyString;
}
@@ -505,5 +505,5 @@
{
// posting is forbidden, hence no list posting address
- return _T("");
+ return wxEmptyString;
}
//else: fall through
@@ -515,5 +515,5 @@
wxLogDebug(_T("Malformed List-Post header '%s'!"),
listPostHeader.c_str());
- return _T("");
+ return wxEmptyString;
}
}
Index: MailFolderCC.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/MailFolderCC.cpp,v
retrieving revision 1.711
retrieving revision 1.712
diff -b -u -2 -r1.711 -r1.712
--- MailFolderCC.cpp 6 Jul 2005 22:00:02 -0000 1.711
+++ MailFolderCC.cpp 16 Jan 2006 20:32:28 -0000 1.712
@@ -1159,5 +1159,5 @@
// ----------------------------------------------------------------------------
-String MailFolderCC::ms_LastCriticalFolder = _T("");
+String MailFolderCC::ms_LastCriticalFolder = wxEmptyString;
// ----------------------------------------------------------------------------
@@ -1345,5 +1345,5 @@
p, mhRoot.c_str());
- return _T("");
+ return wxEmptyString;
}
}
@@ -1483,5 +1483,5 @@
String GetFirstPartFromImapSpec(const String &imap)
{
- if(imap[0] != '{') return _T("");
+ if(imap[0] != '{') return wxEmptyString;
String first;
const wxChar *cptr = imap.c_str()+1;
@@ -1503,5 +1503,5 @@
return cptr+1;
else
- return _T(""); // error
+ return wxEmptyString; // error
}
@@ -5297,5 +5297,5 @@
else
{
- ms_LastCriticalFolder = _T("");
+ ms_LastCriticalFolder = wxEmptyString;
}
}
@@ -5307,5 +5307,5 @@
MailFolderCC::mm_nocritical(MAILSTREAM *stream)
{
- ms_LastCriticalFolder = _T("");
+ ms_LastCriticalFolder = wxEmptyString;
if ( stream )
{
Index: MailFolderCmn.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/MailFolderCmn.cpp,v
retrieving revision 1.136
retrieving revision 1.137
diff -b -u -2 -r1.136 -r1.137
--- MailFolderCmn.cpp 4 Oct 2004 12:30:22 -0000 1.136
+++ MailFolderCmn.cpp 16 Jan 2006 20:32:28 -0000 1.137
@@ -1968,5 +1968,5 @@
// '%s' with the file name or add the file name at the end if
// there is no '%s'
- wxFileType::MessageParameters params(sound, _T(""));
+ wxFileType::MessageParameters params(sound, wxEmptyString);
String command = wxFileType::ExpandCommand(soundCmd, params);
Index: MailMH.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/MailMH.cpp,v
retrieving revision 1.17
retrieving revision 1.18
diff -b -u -2 -r1.17 -r1.18
--- MailMH.cpp 12 Oct 2003 17:24:19 -0000 1.17
+++ MailMH.cpp 16 Jan 2006 20:32:28 -0000 1.18
@@ -311,5 +311,5 @@
MF_MH,
0, // flags
- _T(""),
+ wxEmptyString,
FALSE); // don't notify
if ( !folderMH )
@@ -332,5 +332,5 @@
{
MHFoldersImporter importer;
- asmf->ListFolders(_T("*"), FALSE, _T(""), &importer);
+ asmf->ListFolders(_T("*"), FALSE, wxEmptyString, &importer);
ok = importer.IsOk();
Index: Message.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/Message.cpp,v
retrieving revision 1.39
retrieving revision 1.40
diff -b -u -2 -r1.39 -r1.40
--- Message.cpp 17 Nov 2004 13:57:15 -0000 1.39
+++ Message.cpp 16 Jan 2006 20:32:28 -0000 1.40
@@ -258,6 +258,6 @@
if ( addr.length() == 0 )
{
- if(firstName) *firstName = _T("");
- if(lastName) *lastName = _T("");
+ if(firstName) *firstName = wxEmptyString;
+ if(lastName) *lastName = wxEmptyString;
return;
}
Index: MessageCC.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/MessageCC.cpp,v
retrieving revision 1.152
retrieving revision 1.153
diff -b -u -2 -r1.152 -r1.153
--- MessageCC.cpp 13 Jul 2004 22:16:41 -0000 1.152
+++ MessageCC.cpp 16 Jan 2006 20:32:28 -0000 1.153
@@ -334,5 +334,5 @@
for ( headers = headersOrig; *headers; headers++ )
{
- values.Add(_T(""));
+ values.Add(wxEmptyString);
if ( encodings )
{
@@ -502,5 +502,5 @@
if ( !m_mailFullText )
{
- CHECK_DEAD_RC(_T(""));
+ CHECK_DEAD_RC(wxEmptyString);
if ( m_folder->Lock() )
Index: SendMessageCC.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/SendMessageCC.cpp,v
retrieving revision 1.231
retrieving revision 1.232
diff -b -u -2 -r1.231 -r1.232
--- SendMessageCC.cpp 20 Jul 2005 12:47:01 -0000 1.231
+++ SendMessageCC.cpp 16 Jan 2006 20:32:28 -0000 1.232
@@ -417,5 +417,5 @@
if ( READ_CONFIG_BOOL(m_profile, MP_COMPOSE_USE_XFACE) )
- m_XFaceFile = m_profile->readEntry(MP_COMPOSE_XFACE_FILE, _T(""));
+ m_XFaceFile = m_profile->readEntry(MP_COMPOSE_XFACE_FILE, wxEmptyString);
m_CharSet = READ_CONFIG_TEXT(m_profile,MP_CHARSET);
Index: VFolder.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/mail/VFolder.cpp,v
retrieving revision 1.17
retrieving revision 1.18
diff -b -u -2 -r1.17 -r1.18
--- VFolder.cpp 30 Jun 2005 23:39:50 -0000 1.17
+++ VFolder.cpp 16 Jan 2006 20:32:28 -0000 1.18
@@ -164,5 +164,5 @@
const String& /* login */)
{
- CHECK( folder, _T(""), _T("NULL folder in MailFolderVirt::GetFullImapSpec")
);
+ CHECK( folder, wxEmptyString, _T("NULL folder in
MailFolderVirt::GetFullImapSpec") );
String spec;
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Mahogany-cvsupdates mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates