Monotone-Parent: 970df33571464dbba1559ddd5794abaa1dd248c4

Monotone-Revision: cb5bfb62000fd7982b31d051ab2a4f4d859b9125

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-08-17T02:24:10
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-08-17 02:24:10 +00:00
parent 764f37acb5
commit c8b198b345
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1,5 +1,10 @@
2007-08-16 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Mailer/SOGoMailBaseObject.m ([-imap4URLString]): no
longer adds a "/" at the end of the string (the default for
folders), therefore this will be overriden in SOGoMailFolder
rather than in SOGoMailObject.
* UI/MailerUI/UIxMailListView.m ([-expungeAction]): removed
method, moved into the new UIxMailActions module class.
+1 -1
View File
@@ -151,7 +151,7 @@ static BOOL debugOn = YES;
urlString = [container imap4URLString];
imap4Name = [[self relativeImap4Name] stringByEscapingURL];
[urlString appendFormat: @"%@/", imap4Name];
[urlString appendFormat: @"%@", imap4Name];
return urlString;
}