Fixed: include path doesn't take the absolute path

This commit is contained in:
Alexandre Wilhelm
2014-11-06 09:52:40 -08:00
parent ea0c5e291f
commit 26223bb383
+2 -2
View File
@@ -1842,9 +1842,9 @@ void fsevents_callback(ConstFSEventStreamRef streamRef,
NSArray *matches = [regulareExpressionFramework matchesInString:response options:0 range:NSMakeRange(0, [response length])];
for (NSTextCheckingResult *match in matches)
return [response substringWithRange:[match rangeAtIndex:1]];
return [NSString stringWithFormat:@"%@/%@", self.projectPath, [response substringWithRange:[match rangeAtIndex:1]]];
return @"Frameworks/";
return [NSString stringWithFormat:@"%@/%@", self.projectPath ,@"Frameworks/"];
}
- (BOOL)checkObjjWarningsForPath:(NSArray*)paths