Subversion Repositories spk

Rev

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

Rev 52 Rev 57
Line 395... Line 395...
395
}
395
}
396
 
396
 
397
bool CModDiff::CanBeDiffed(const CyString &file)
397
bool CModDiff::CanBeDiffed(const CyString &file)
398
{
398
{
399
	CyString checkFile = file;
399
	CyString checkFile = file;
400
	checkFile = CFileIO(file).GetDir() + "/" + CFileIO(file).GetBaseName();
400
	checkFile = CFileIO(file.ToString()).GetDir() + "/" + CFileIO(file.ToString()).baseName();
401
 
401
 
402
	// all t files are the same format
402
	// all t files are the same format
403
	if ( checkFile.Left(7).Compare("types/T") )
403
	if ( checkFile.Left(7).Compare("types/T") )
404
		return true;
404
		return true;
405
 
405