]> err.no Git - sope/commitdiff
Fixes to NGCalendarDateRange.m
authorznek <znek@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Wed, 25 Aug 2004 13:39:53 +0000 (13:39 +0000)
committerznek <znek@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Wed, 25 Aug 2004 13:39:53 +0000 (13:39 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@57 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-core/NGExtensions/ChangeLog
sope-core/NGExtensions/NGCalendarDateRange.m
sope-core/NGExtensions/NGExtensions.xcode/project.pbxproj
sope-core/NGExtensions/Version

index 890626e0ab0fe1328c55c3d112478a1ac423989e..310abf01c6f8ab3e1f95d1151e8a0aa2ce2bda5c 100644 (file)
@@ -1,3 +1,8 @@
+2004-08-25  Marcus Mueller  <znek@mulle-kybernetik.com>
+
+       * NGCalendarDateRange.m: properly fixed intersectionDateRange: to not
+         return pseudo-ranges. (v4.3.107)
+
 2004-08-23  Marcus Mueller  <znek@mulle-kybernetik.com>
 
        * v4.3.106
index 1bb488640bbb2e231c721357f2dfe295d5457ca3..1c3e9dcfa535067f2045675f605f23ecbbb71a24 100644 (file)
     c = self->startDate;
     d = self->endDate;
   }
+  // [a;b[ ?< [c;d[
   if ([b compare:c] == NSOrderedAscending)
     return nil; // no intersection
-  if ([b compare:d] == NSOrderedAscending)
-    return [NGCalendarDateRange calendarDateRangeWithStartDate:c endDate:b];
-  
+  // b ?< d
+  if ([b compare:d] == NSOrderedAscending) {
+    // c !< b  && b !< d -> [c;b[
+    if([c compare:b] == NSOrderedSame)
+      return nil; // no real range, thus return nil!
+    else
+      return [NGCalendarDateRange calendarDateRangeWithStartDate:c endDate:b];
+  }
+  if([c compare:d] == NSOrderedSame)
+    return nil; // no real range, thus return nil!
+  // b !> d -> [c;d[
   return [NGCalendarDateRange calendarDateRangeWithStartDate:c endDate:d];
 }
 
 }
 
 - (BOOL)containsDate:(NSCalendarDate *)date {
-  if([self->endDate isEqualToDate:date])
-      return NO;
   return ([self->startDate earlierDate:date] == self->startDate && 
-         [self->endDate laterDate:date] == self->endDate) ? YES : NO;
+         [self->endDate compare:date] == NSOrderedDescending) ? YES : NO;
 }
 
 /* comparison */
index 3ed152b36ac1a7fccc9d5881b1db7aff04817c34..374276ed06395ab3551b8db09e8fb1a828bf30ba 100644 (file)
                };
                ADD65C2506DA3323007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = EOCacheDataSource.m;
                };
                ADD65C2606DA3323007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = EOCompoundDataSource.m;
                };
                ADD65C2706DA3323007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "EODataSource+NGExtensions.m";
                };
                ADD65C2806DA3323007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "EOFetchSpecification+plist.m";
                };
                ADD65C2906DA3323007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = EOFilterDataSource.m;
                };
                ADD65C2A06DA3323007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = EOGrouping.m;
                };
                ADD65C2B06DA3323007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = EOGroupingSet.m;
                };
                ADD65C2C06DA3323007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = EOKeyGrouping.m;
                };
                ADD65C2D06DA3323007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = EOKeyMapDataSource.m;
                };
                ADD65C2E06DA3323007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "EOQualifier+CtxEval.m";
                };
                ADD65C2F06DA3323007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "EOQualifier+plist.m";
                };
                ADD65C3006DA3323007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = EOQualifierGrouping.m;
                };
                ADD65C3106DA3323007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "EOSortOrdering+plist.m";
                };
                ADD65C3206DA3323007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = EOTrueQualifier.m;
                        sourceTree = "<group>";
                };
                ADD65C3306DA3323007161CA = {
+                       explicitFileType = sourcecode.make;
                        fileEncoding = 4;
+                       indentWidth = 8;
                        isa = PBXFileReference;
-                       lastKnownFileType = text;
                        path = GNUmakefile;
                        refType = 4;
                        sourceTree = "<group>";
+                       tabWidth = 8;
                };
                ADD65C3406DA3323007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSArray+EOGrouping.m";
                        sourceTree = "<group>";
                };
                ADD65C3906DA336E007161CA = {
+                       explicitFileType = sourcecode.make;
                        fileEncoding = 4;
+                       indentWidth = 8;
                        isa = PBXFileReference;
-                       lastKnownFileType = text;
                        path = GNUmakefile;
                        refType = 4;
                        sourceTree = "<group>";
+                       tabWidth = 8;
                };
                ADD65C3A06DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGPropertyListParser.m;
                };
                ADD65C3B06DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSArray+enumerator.m";
                };
                ADD65C3C06DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSAutoreleasePool+misc.m";
                };
                ADD65C3D06DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSCalendarDate+misc.m";
                };
                ADD65C3E06DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSData+gzip.m";
                };
                ADD65C3F06DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSData+misc.m";
                };
                ADD65C4006DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSDictionary+misc.m";
                };
                ADD65C4106DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSEnumerator+misc.m";
                };
                ADD65C4206DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSException+misc.m";
                };
                ADD65C4306DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSFileManager+Extensions.m";
                };
                ADD65C4406DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSMethodSignature+misc.m";
                };
                ADD65C4506DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSNull+misc.m";
                };
                ADD65C4606DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSObject+Logs.m";
                };
                ADD65C4706DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSObject+Values.m";
                };
                ADD65C4806DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSProcessInfo+misc.m";
                };
                ADD65C4906DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSRunLoop+FileObjects.m";
                };
                ADD65C4A06DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSSet+enumerator.m";
                };
                ADD65C4B06DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSString+Encoding.m";
                };
                ADD65C4C06DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSString+Ext.m";
                };
                ADD65C4D06DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSString+Formatting.m";
                };
                ADD65C4E06DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSString+German.m";
                };
                ADD65C4F06DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSString+HTMLEscaping.m";
                };
                ADD65C5006DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSString+misc.m";
                };
                ADD65C5106DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSString+URLEscaping.m";
                };
                ADD65C5206DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSString+XMLEscaping.m";
                };
                ADD65C5306DA336E007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NSURL+misc.m";
                        sourceTree = "<group>";
                };
                ADD65C5506DA336F007161CA = {
+                       explicitFileType = sourcecode.make;
                        fileEncoding = 4;
+                       indentWidth = 8;
                        isa = PBXFileReference;
-                       lastKnownFileType = text;
                        path = GNUmakefile;
                        refType = 4;
                        sourceTree = "<group>";
+                       tabWidth = 8;
                };
                ADD65C5606DA336F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGRule.m;
                };
                ADD65C5706DA336F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGRuleAssignment.m;
                };
                ADD65C5806DA336F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGRuleContext.m;
                };
                ADD65C5906DA336F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGRuleModel.m;
                };
                ADD65C5A06DA336F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGRuleParser.h;
                };
                ADD65C5B06DA336F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGRuleParser.m;
                };
                ADD65C5E06DA336F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "DOMNode+EOQualifier.m";
                        sourceTree = "<group>";
                };
                ADD65C5F06DA336F007161CA = {
+                       explicitFileType = sourcecode.make;
                        fileEncoding = 4;
+                       indentWidth = 8;
                        isa = PBXFileReference;
-                       lastKnownFileType = text;
                        path = GNUmakefile;
                        refType = 4;
                        sourceTree = "<group>";
+                       tabWidth = 8;
                };
                ADD65C6206DA3379007161CA = {
                        children = (
                };
                ADD65C7006DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = common.h;
                };
                ADD65C7306DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = FileObjectHolder.m;
                };
                ADD65C7706DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGBase64Coding.m;
                };
                ADD65C7806DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGBitSet.m;
                };
                ADD65C7906DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGBundleManager.m;
                };
                ADD65C7A06DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGCalendarDateRange.m;
                };
                ADD65C7C06DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGCustomFileManager.m;
                };
                ADD65C7D06DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGDirectoryEnumerator.m;
                };
                ADD65C7E06DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGExtensions.m;
                };
                ADD65C7F06DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGFileFolderInfoDataSource.m;
                };
                ADD65C8006DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGFileManager.m;
                };
                ADD65C8106DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = "NGFileManager+JS.m";
                };
                ADD65C8206DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGFileManagerURL.m;
                };
                ADD65C8306DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGHashMap.m;
                };
                ADD65C8406DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGMerging.m;
                };
                ADD65C8506DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGObjCRuntime.m;
                };
                ADD65C8606DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGQuotedPrintableCoding.m;
                };
                ADD65C8706DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGStack.m;
                };
                ADD65C8806DA343C007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.objc;
                        path = NGStringScanEnumerator.m;
                };
                ADD65D6206DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = AutoDefines.h;
                };
                ADD65D6306DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "DOMNode+EOQualifier.h";
                };
                ADD65D6406DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = EOCacheDataSource.h;
                };
                ADD65D6506DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = EOCompoundDataSource.h;
                };
                ADD65D6606DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "EODataSource+NGExtensions.h";
                };
                ADD65D6706DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "EOFetchSpecification+plist.h";
                };
                ADD65D6806DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = EOFilterDataSource.h;
                };
                ADD65D6906DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = EOGrouping.h;
                };
                ADD65D6A06DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = EOGroupingSet.h;
                };
                ADD65D6B06DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = EOKeyGrouping.h;
                };
                ADD65D6C06DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = EOKeyMapDataSource.h;
                };
                ADD65D6D06DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "EOQualifier+CtxEval.h";
                };
                ADD65D6E06DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "EOQualifier+plist.h";
                };
                ADD65D6F06DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = EOQualifierGrouping.h;
                };
                ADD65D7006DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "EOSortOrdering+plist.h";
                };
                ADD65D7106DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = EOTrueQualifier.h;
                };
                ADD65D7206DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = FileObjectHolder.h;
                };
                ADD65D7306DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = IndexFunc.h;
                };
                ADD65D7406DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGBase64Coding.h;
                };
                ADD65D7506DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGBaseTypes.h;
                };
                ADD65D7606DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGBitSet.h;
                };
                ADD65D7706DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGBundleManager.h;
                };
                ADD65D7806DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGCalendarDateRange.h;
                };
                ADD65D7906DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGCharBuffers.h;
                };
                ADD65D7B06DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGCustomFileManager.h;
                };
                ADD65D7C06DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGDirectoryEnumerator.h;
                };
                ADD65D7D06DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGExtensions.h;
                };
                ADD65D7E06DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGExtensionsDecls.h;
                };
                ADD65D7F06DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGFileFolderInfoDataSource.h;
                };
                ADD65D8006DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGFileManager.h;
                };
                ADD65D8106DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGFileManagerURL.h;
                };
                ADD65D8206DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGHashMap.h;
                };
                ADD65D8306DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGMemoryAllocation.h;
                };
                ADD65D8406DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGMerging.h;
                };
                ADD65D8506DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGObjCRuntime.h;
                };
                ADD65D8606DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGObjectMacros.h;
                };
                ADD65D8706DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGPropertyListParser.h;
                };
                ADD65D8806DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGQuotedPrintableCoding.h;
                };
                ADD65D8906DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGRule.h;
                };
                ADD65D8A06DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGRuleAssignment.h;
                };
                ADD65D8B06DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGRuleContext.h;
                };
                ADD65D8C06DA382F007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGRuleEngine.h;
                };
                ADD65D8D06DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGRuleModel.h;
                };
                ADD65D8E06DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGStack.h;
                };
                ADD65D8F06DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = NGStringScanEnumerator.h;
                };
                ADD65D9006DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSArray+enumerator.h";
                };
                ADD65D9106DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSAutoreleasePool+misc.h";
                };
                ADD65D9206DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSCalendarDate+misc.h";
                };
                ADD65D9306DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSData+gzip.h";
                };
                ADD65D9406DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSData+misc.h";
                };
                ADD65D9506DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSDictionary+misc.h";
                };
                ADD65D9606DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSEnumerator+misc.h";
                };
                ADD65D9706DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSException+misc.h";
                };
                ADD65D9806DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSFileManager+Extensions.h";
                };
                ADD65D9906DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSMethodSignature+misc.h";
                };
                ADD65D9A06DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSNull+misc.h";
                };
                ADD65D9B06DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSObject+Logs.h";
                };
                ADD65D9C06DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSObject+Values.h";
                };
                ADD65D9D06DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSProcessInfo+misc.h";
                };
                ADD65D9E06DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSRunLoop+FileObjects.h";
                };
                ADD65D9F06DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSSet+enumerator.h";
                };
                ADD65DA006DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSString+Encoding.h";
                };
                ADD65DA106DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSString+Ext.h";
                };
                ADD65DA206DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSString+Formatting.h";
                };
                ADD65DA306DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSString+German.h";
                };
                ADD65DA406DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSString+misc.h";
                };
                ADD65DA506DA3830007161CA = {
                        fileEncoding = 4;
+                       indentWidth = 2;
                        isa = PBXFileReference;
                        lastKnownFileType = sourcecode.c.h;
                        path = "NSURL+misc.h";
index b12aa9c0a7efb46214afa293e370189eb53871c3..33b1f9607066f5748778b6f5ea932e5d3db6d3bd 100644 (file)
@@ -1,5 +1,5 @@
 # $Id$
 
-SUBMINOR_VERSION:=106
+SUBMINOR_VERSION:=107
 
 # v4.2.72 requires libEOControl v4.2.39