+2005-07-20 Helge Hess <helge.hess@opengroupware.org>
+
+ * UIxComponent.m: added fragile base class check (v0.9.33)
+
2005-07-20 Marcus Mueller <znek@mulle-kybernetik.com>
* UIxComponent.m: changed language lookup to meet the status quo
static BOOL uixDebugEnabled = NO;
++ (int)version {
+ return [super version] + 0 /* v2 */;
+}
+
+ (void)initialize {
NSUserDefaults *ud = [NSUserDefaults standardUserDefaults];
-
+
+ NSAssert2([super version] == 2,
+ @"invalid superclass (%@) version %i !",
+ NSStringFromClass([self superclass]), [super version]);
+
uixDebugEnabled = [ud boolForKey:@"SOGoUIxDebugEnabled"];
if (MET == nil) {
# version file
-SUBMINOR_VERSION:=32
+SUBMINOR_VERSION:=33
# v0.9.18 requires NGExtensions v4.5.136
2005-07-20 Helge Hess <helge.hess@opengroupware.org>
+ * UIxAppointmentEditor.m: added fragile base class check (v0.9.143)
+
* added a basic German translation (v0.9.142)
2005-07-19 Helge Hess <helge.hess@opengroupware.org>
@implementation UIxAppointmentEditor
++ (int)version {
+ return [super version] + 0 /* v2 */;
+}
+
++ (void)initialize {
+ NSAssert2([super version] == 2,
+ @"invalid superclass (%@) version %i !",
+ NSStringFromClass([self superclass]), [super version]);
+}
+
- (id)init {
self = [super init];
if(self) {
# Version file
-SUBMINOR_VERSION:=142
+SUBMINOR_VERSION:=143
# v0.9.136 requires SOGoUI v0.9.30
# v0.9.123 requires Appointments v0.9.35