Skip to content

Commit c7a7091

Browse files
committed
Fixed warnings
1 parent 53fb56b commit c7a7091

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Table Tool/Base.lproj/Document.xib

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
<window title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="xOd-HO-29H" userLabel="Window">
2626
<windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/>
2727
<windowPositionMask key="initialPositionMask" leftStrut="YES" topStrut="YES"/>
28-
<rect key="contentRect" x="100" y="355" width="837" height="523"/>
29-
<rect key="screenRect" x="0.0" y="0.0" width="1280" height="777"/>
28+
<rect key="contentRect" x="100" y="421" width="837" height="523"/>
29+
<rect key="screenRect" x="0.0" y="0.0" width="1920" height="1057"/>
3030
<value key="minSize" type="size" width="94" height="200"/>
3131
<view key="contentView" id="gIp-Ho-8D9">
3232
<rect key="frame" x="0.0" y="0.0" width="837" height="523"/>

Table Tool/CSVHeuristic.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ -(BOOL)useSimpleHeuristic{
126126

127127
if(error.code == 1) return NO;
128128
if(error) continue;
129-
scores[i] = [NSNumber numberWithInt:([scores[i] intValue] + readLines.count)];
129+
scores[i] = [NSNumber numberWithInteger:([scores[i] integerValue] + readLines.count)];
130130
[self checkForRowLengthsFromReader:i];
131131
[self checkForNumbersFromReader:i];
132132
}

0 commit comments

Comments
 (0)