Subversion Repositories spk

Rev

Rev 50 | Rev 79 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 50 Rev 52
Line 1579... Line 1579...
1579
 
1579
 
1580
 
1580
 
1581
	void PackageForm::ImportData(String ^file, int type)
1581
	void PackageForm::ImportData(String ^file, int type)
1582
	{
1582
	{
1583
		CFileIO F(CyStringFromSystemString(file));
1583
		CFileIO F(CyStringFromSystemString(file));
1584
		if ( !F.Exists() )
1584
		if ( !F.exists() )
1585
			return;
1585
			return;
1586
 
1586
 
1587
		CyStringList *lines = F.ReadLinesStr();
1587
		CyStringList *lines = F.ReadLinesStr();
1588
		if ( !lines )
1588
		if ( !lines )
1589
			return;
1589
			return;
Line 1745... Line 1745...
1745
	}
1745
	}
1746
 
1746
 
1747
	void PackageForm::ImportAnimations(String ^file)
1747
	void PackageForm::ImportAnimations(String ^file)
1748
	{
1748
	{
1749
		CFileIO F(CyStringFromSystemString(file));
1749
		CFileIO F(CyStringFromSystemString(file));
1750
		if ( !F.Exists() )
1750
		if ( !F.exists() )
1751
			return;
1751
			return;
1752
 
1752
 
1753
		CyStringList *lines = F.ReadLinesStr();
1753
		CyStringList *lines = F.ReadLinesStr();
1754
		if ( !lines )
1754
		if ( !lines )
1755
			return;
1755
			return;