]> err.no Git - scalable-opengroupware.org/commitdiff
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@86 d1b88da0-ebda-0310-925b-ed51d8...
authorhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Tue, 29 Jun 2004 23:02:34 +0000 (23:02 +0000)
committerhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Tue, 29 Jun 2004 23:02:34 +0000 (23:02 +0000)
ZideStore/UI-X/ChangeLog
ZideStore/UI-X/Scheduler/GNUmakefile.preamble
ZideStore/UI-X/Scheduler/UIxAppointmentEditor.m

index 1a2266b20986a5bb7aa199f769997a9b74615e96..4e9ebe71ef26df61da310fdeca203eb08aa572d4 100644 (file)
@@ -1,3 +1,8 @@
+2004-06-30  Helge Hess  <helge.hess@opengroupware.org>
+
+       * Scheduler/UIxAppointmentEditor.m: made the hack more hackish to work
+         on MacOSX
+
 2004-06-28  Marcus Mueller  <znek@mulle-kybernetik.com>
 
        * Common/UIxComponent.[hm]: moved -ownMethodName here.
index c2fecf5378f293ff333dafe324c9b34be7b2de2c..23c9438a91153e090869b8ebbbd8e2f59226d347 100644 (file)
@@ -10,6 +10,8 @@ endif
 SchedulerUI_LIB_DIRS += -L$(RELBUILD_DIR_libZideStoreCommonUI)
 
 SchedulerUI_BUNDLE_LIBS += \
-       -lNGObjWeb -lNGScripting \
+       -lNGObjWeb -lNGScripting -lNGJavaScript -ljs \
        -lNGMime -lNGStreams -lNGExtensions -lEOControl \
-       -lXmlRpc -lDOM -lSaxObjC -lSOGoLogic -lZideStoreCommonUI
+       -lXmlRpc -lDOM -lSaxObjC \
+       -lSOGoLogic -lZideStoreCommonUI \
+       -lNGiCal
index 23860cf296c56dc90fc0f2f5f3dabe247e39ed8c..6239cb0cf9bebc560d33e1a37f6b46395735f083 100644 (file)
 
 @implementation NSObject (AppointmentHack)
 - (BOOL)isAppointment {
-    return NO;
-}
-@end
-
-@interface SxAppointment : NSObject
-@end
-
-@implementation SxAppointment (AppointmentHack)
-- (BOOL)isAppointment {
-    return YES;
+  return [self isKindOfClass:NSClassFromString(@"SxAppointment")];
 }
 @end