Skip to content

Commit d564151

Browse files
author
Chris Wilson
committed
fixes a compiler warning.
1 parent 11f2bed commit d564151

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CoreDataUtil.xcodeproj/project.pbxproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@
500500
ORGANIZATIONNAME = "mFluent LLC";
501501
TargetAttributes = {
502502
C1CEFE501463779C00466EB3 = {
503-
DevelopmentTeam = K386ENA6UZ;
503+
DevelopmentTeam = WDCGJTU726;
504504
SystemCapabilities = {
505505
com.apple.InAppPurchase = {
506506
enabled = 0;

CoreDataUtil/CoreData/MFLCoreDataIntrospection.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
- (void) executeFetch: (NSFetchRequest *)fetch;
6464

6565
- (void)sortEntityData:(NSString *)fieldName;
66-
+ (id)getDisplayValueForObject:(id)obj;
66+
//+ (id)getDisplayValueForObject:(id)obj;
6767
- (NSInteger)getCurrentHistoryIndex;
6868
- (void)setCurrentHistoryIndex:(NSInteger)currentIndex;
6969
- (void)updateCoreDataHistory:(NSString *)name predicate:(NSPredicate *)predicate objectType:(MFLObjectType)type;

CoreDataUtil/CoreData/MFLCoreDataIntrospection.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ - (NSUInteger) entityDataCount {
413413
}
414414

415415
- (NSArray*) getDataAtRow: (NSUInteger) row {
416-
if (row >= 0 && row < [self entityDataCount]) {
416+
if (row > 0 && row < [self entityDataCount]) {
417417
return (self.entityData)[row];
418418
}
419419
else {

CoreDataUtil/CoreDataPro-Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@
7070
<key>CFBundlePackageType</key>
7171
<string>APPL</string>
7272
<key>CFBundleShortVersionString</key>
73-
<string>1.3</string>
73+
<string>1.4</string>
7474
<key>CFBundleSignature</key>
7575
<string>????</string>
7676
<key>CFBundleVersion</key>
77-
<string>5</string>
77+
<string>6</string>
7878
<key>LSApplicationCategoryType</key>
7979
<string>public.app-category.developer-tools</string>
8080
<key>LSMinimumSystemVersion</key>

0 commit comments

Comments
 (0)