Skip to content

Commit

Permalink
Updated for Xcode 7 beta 6 (fixes #316)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgindi committed Aug 27, 2015
1 parent b5bc155 commit b68481e
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions Charts/Charts.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,7 @@
5BA8EC371A9D14DC00CE82E1 /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftMigration = 0700;
LastSwiftUpdateCheck = 0700;
LastUpgradeCheck = 0700;
ORGANIZATIONNAME = dcg;
Expand Down
2 changes: 1 addition & 1 deletion Charts/Classes/Charts/BarChartView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class BarChartView: BarLineChartViewBase, BarChartRendererDelegate
{
if (_dataNotSet || _data === nil)
{
print("Can't select by touch. No data set.", appendNewline: true)
print("Can't select by touch. No data set.", terminator: "\n")
return nil
}

Expand Down
2 changes: 1 addition & 1 deletion Charts/Classes/Charts/BarLineChartViewBase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,7 @@ public class BarLineChartViewBase: ChartViewBase, UIGestureRecognizerDelegate
{
if (_dataNotSet || _data === nil)
{
print("Can't select by touch. No data set.", appendNewline: true)
print("Can't select by touch. No data set.", terminator: "\n")
return nil
}

Expand Down
2 changes: 1 addition & 1 deletion Charts/Classes/Charts/ChartViewBase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public class ChartViewBase: UIView, ChartAnimatorDelegate
{
if (newValue == nil || newValue?.yValCount == 0)
{
print("Charts: data argument is nil on setData()", appendNewline: true)
print("Charts: data argument is nil on setData()", terminator: "\n")
return
}

Expand Down
2 changes: 1 addition & 1 deletion Charts/Classes/Charts/HorizontalBarChartView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public class HorizontalBarChartView: BarChartView
{
if (_dataNotSet || _data === nil)
{
print("Can't select by touch. No data set.", appendNewline: true)
print("Can't select by touch. No data set.", terminator: "\n")
return nil
}

Expand Down
4 changes: 2 additions & 2 deletions Charts/Classes/Data/ChartData.swift
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public class ChartData: NSObject
{
if (dataSets[i].yVals.count > _xVals.count)
{
print("One or more of the DataSet Entry arrays are longer than the x-values array of this Data object.", appendNewline: true)
print("One or more of the DataSet Entry arrays are longer than the x-values array of this Data object.", terminator: "\n")
return
}
}
Expand Down Expand Up @@ -672,7 +672,7 @@ public class ChartData: NSObject
}
else
{
print("ChartData.addEntry() - dataSetIndex our of range.", appendNewline: true)
print("ChartData.addEntry() - dataSetIndex our of range.", terminator: "\n")
}
}

Expand Down
2 changes: 1 addition & 1 deletion Charts/Classes/Data/ScatterChartData.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class ScatterChartData: BarLineScatterCandleChartData

if (scatterDataSet == nil)
{
print("ScatterChartData: Found a DataSet which is not a ScatterChartDataSet", appendNewline: true)
print("ScatterChartData: Found a DataSet which is not a ScatterChartDataSet", terminator: "\n")
}
else
{
Expand Down
1 change: 1 addition & 0 deletions ChartsDemo/ChartsDemo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,7 @@
5B57BBA71A9B26AA0036A6CC /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftMigration = 0700;
LastSwiftUpdateCheck = 0700;
LastUpgradeCheck = 0700;
ORGANIZATIONNAME = dcg;
Expand Down

0 comments on commit b68481e

Please sign in to comment.