+2005-07-14 Helge Hess <helge.hess@opengroupware.org>
+
+ * UIxAppointmentView.m: fixed a small memory leak when creating the
+ categories string (v0.9.132)
+
2005-07-14 Marcus Mueller <znek@mulle-kybernetik.com>
* product.plist: removed 'schedule' method from SOGoAppointmentFolder
NSArray *cats;
NSMutableString *s;
- s = [[NSMutableString alloc] init];
+ s = [NSMutableString stringWithCapacity:32];
cats = [((SOGoAppointment *)self->appointment) categories];
count = [cats count];
for(i = 0; i < count; i++) {
# Version file
-SUBMINOR_VERSION:=131
+SUBMINOR_VERSION:=132
# v0.9.123 requires Appointments v0.9.35
# v0.9.123 requires SOGoUI v0.9.24