マスタエディタ:海外版の製品コード記述のバグ修正。SDKのバージョンがSRLから得られないときには提出書に空白を記述する。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2537 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
nishikawa_takeshi 2008-09-17 09:51:06 +00:00
parent 5d6a55a8f4
commit ce0d3b8e20
5 changed files with 4 additions and 4 deletions

View File

@ -38,7 +38,7 @@ void Form1::setDeliverableProperties(void)
{
this->hDeliv->hProductCode2Foreign += ("/" + this->tboxProductCode2Foreign2->Text);
}
if( !System::String::IsNullOrEmpty( this->tboxProductCode2Foreign2->Text ) )
if( !System::String::IsNullOrEmpty( this->tboxProductCode2Foreign3->Text ) )
{
this->hDeliv->hProductCode2Foreign += ("/" + this->tboxProductCode2Foreign3->Text);
}
@ -68,7 +68,7 @@ void Form1::setDeliverableProperties(void)
}
if( this->hDeliv->hSDK == nullptr )
{
this->hDeliv->hSDK = gcnew System::String( "Undefined" );
this->hDeliv->hSDK = gcnew System::String( "" );
}
// ñ<E28099>o•û@
if( this->rSubmitPost->Checked == true )

View File

@ -1240,9 +1240,9 @@ ECSrlResult RCSrl::mrcTWL( FILE *fp )
{
this->hWarnList->Add( gcnew RCMrcError(
"デバッガ動作禁止フラグ", 0x1f, 0x1f,
"デバッガ上で動作可能な設定になっています。デバッガ向けソフトとしてROMをリリースする場合にはセキュリティ上の問題がないかご確認ください。",
"デバッガ上で解析可能な設定になっています。デバッガ向けソフトとしてROMをリリースする場合にはセキュリティ上の問題がないかご確認ください。",
"Disable Launch on Debugger Flag",
"This ROM is launched on the debugger. If the ROM is released for the debugger, please check the security settings.",
"This ROM can be analyzed on the debugger. If the ROM is released for the debugger, please check the security settings.",
false, true ) );
}
}