Subversion Repositories spk

Rev

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

Rev 101 Rev 102
Line 544... Line 544...
544
}
544
}
545
 
545
 
546
bool CModDiff::CanBeDiffed(const Utils::String &file)
546
bool CModDiff::CanBeDiffed(const Utils::String &file)
547
{
547
{
548
	Utils::String checkFile = file;
548
	Utils::String checkFile = file;
549
	checkFile = CFileIO(file).GetDir().ToString() + "/" + CFileIO(file).baseName();
549
	checkFile = CFileIO(file).dir() + "/" + CFileIO(file).baseName();
550
 
550
 
551
	// all t files are the same format
551
	// all t files are the same format
552
	if ( checkFile.left(7).Compare("types/T") )
552
	if ( checkFile.left(7).Compare("types/T") )
553
		return true;
553
		return true;
554
 
554