Update of /cvsroot/mahogany/M/src/gui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31915/src/gui

Modified Files:
        wxRenameDialog.cpp 
Log Message:
don't put leading slash in front of IMAP mailbox names

Index: wxRenameDialog.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxRenameDialog.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -b -u -2 -r1.13 -r1.14
--- wxRenameDialog.cpp  27 Sep 2004 20:08:50 -0000      1.13
+++ wxRenameDialog.cpp  27 Sep 2004 20:15:01 -0000      1.14
@@ -262,5 +262,8 @@
    }
 
-   mboxName << m_chDelim << folderName;
+   if ( !mboxName.empty() )
+      mboxName += m_chDelim;
+
+   mboxName += folderName;
 
    m_textMbox->SetValue(mboxName);



-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to