提出確認書チェッカ:CRCの先頭が0のときGUIで16進4桁で表示できない問題を修正。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@233 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
nishikawa_takeshi 2009-03-11 01:16:05 +00:00
parent 60264a060c
commit cd4cd2f42e
4 changed files with 2 additions and 2 deletions

View File

@ -302,8 +302,8 @@ private:
this->gridCompare->Rows[ last ]->DefaultCellStyle->ForeColor = System::Drawing::Color::Red;
}
tmp1 = this->fileCRC->ToString( "X02" );
tmp2 = this->sheet->FileCRC.ToString( "X02" );
tmp1 = this->fileCRC->ToString( "X04" );
tmp2 = this->sheet->FileCRC.ToString( "X04" );
this->gridCompare->Rows->Add( "ファイル全体のCRC", tmp1, tmp2 );
if( *this->error == SheetCheckerError::ERROR_VERIFY_CRC )
{