Fixed a translation bug in MessageListView

Monotone-Parent: 4b5ba0c0b794837c553c64a3c5e55717bd636b7b
Monotone-Revision: a1a0f6f62f6d3e023e2fadcfe803aad3abadef82

Monotone-Author: crobert@inverse.ca
Monotone-Date: 2008-10-08T18:38:03
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
C Robert
2008-10-08 18:38:03 +00:00
parent 2e96324ecd
commit 6ab5cfa937
3 changed files with 10 additions and 1 deletions
+7
View File
@@ -68,6 +68,7 @@
ASSIGN (dateFormatter, [user dateFormatterInContext: context]);
ASSIGN (userTimeZone, [user timeZone]);
folderType = 0;
currentColumn = nil;
}
return self;
@@ -81,6 +82,7 @@
[message release];
[dateFormatter release];
[userTimeZone release];
[currentColumn release];
[super dealloc];
}
@@ -735,6 +737,11 @@
return columnsMetaData;
}
- (NSString *) columnTitle
{
return [self labelForKey: [currentColumn objectForKey: @"value"]];
}
@end
/* UIxMailListView */