Skip to content

Commit

Permalink
Fixed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jakob committed Jun 13, 2016
1 parent 53fb56b commit c7a7091
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Table Tool/Base.lproj/Document.xib
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
<window title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default" id="xOd-HO-29H" userLabel="Window">
<windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/>
<windowPositionMask key="initialPositionMask" leftStrut="YES" topStrut="YES"/>
<rect key="contentRect" x="100" y="355" width="837" height="523"/>
<rect key="screenRect" x="0.0" y="0.0" width="1280" height="777"/>
<rect key="contentRect" x="100" y="421" width="837" height="523"/>
<rect key="screenRect" x="0.0" y="0.0" width="1920" height="1057"/>
<value key="minSize" type="size" width="94" height="200"/>
<view key="contentView" id="gIp-Ho-8D9">
<rect key="frame" x="0.0" y="0.0" width="837" height="523"/>
Expand Down
2 changes: 1 addition & 1 deletion Table Tool/CSVHeuristic.m
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ -(BOOL)useSimpleHeuristic{

if(error.code == 1) return NO;
if(error) continue;
scores[i] = [NSNumber numberWithInt:([scores[i] intValue] + readLines.count)];
scores[i] = [NSNumber numberWithInteger:([scores[i] integerValue] + readLines.count)];
[self checkForRowLengthsFromReader:i];
[self checkForNumbersFromReader:i];
}
Expand Down

0 comments on commit c7a7091

Please sign in to comment.