Skip to content

Commit

Permalink
fixes a compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Wilson committed Dec 2, 2014
1 parent 11f2bed commit d564151
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CoreDataUtil.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@
ORGANIZATIONNAME = "mFluent LLC";
TargetAttributes = {
C1CEFE501463779C00466EB3 = {
DevelopmentTeam = K386ENA6UZ;
DevelopmentTeam = WDCGJTU726;
SystemCapabilities = {
com.apple.InAppPurchase = {
enabled = 0;
Expand Down
2 changes: 1 addition & 1 deletion CoreDataUtil/CoreData/MFLCoreDataIntrospection.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
- (void) executeFetch: (NSFetchRequest *)fetch;

- (void)sortEntityData:(NSString *)fieldName;
+ (id)getDisplayValueForObject:(id)obj;
//+ (id)getDisplayValueForObject:(id)obj;
- (NSInteger)getCurrentHistoryIndex;
- (void)setCurrentHistoryIndex:(NSInteger)currentIndex;
- (void)updateCoreDataHistory:(NSString *)name predicate:(NSPredicate *)predicate objectType:(MFLObjectType)type;
Expand Down
2 changes: 1 addition & 1 deletion CoreDataUtil/CoreData/MFLCoreDataIntrospection.m
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ - (NSUInteger) entityDataCount {
}

- (NSArray*) getDataAtRow: (NSUInteger) row {
if (row >= 0 && row < [self entityDataCount]) {
if (row > 0 && row < [self entityDataCount]) {
return (self.entityData)[row];
}
else {
Expand Down
4 changes: 2 additions & 2 deletions CoreDataUtil/CoreDataPro-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.3</string>
<string>1.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>5</string>
<string>6</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.developer-tools</string>
<key>LSMinimumSystemVersion</key>
Expand Down

0 comments on commit d564151

Please sign in to comment.