mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
提出確認書チェッカ:-cオプションが不要になったので削除。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@53 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
parent
0099945087
commit
3f98d32113
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -342,11 +342,6 @@ System::Int32 parseOption( array<System::String ^> ^args, SheetCheckerContext ^c
|
|||||||
context->bTadVersion = true;
|
context->bTadVersion = true;
|
||||||
numopt++;
|
numopt++;
|
||||||
}
|
}
|
||||||
else if( args[i]->StartsWith( "-c" ) )
|
|
||||||
{
|
|
||||||
context->bConsole = true;
|
|
||||||
numopt++;
|
|
||||||
}
|
|
||||||
else if( !args[i]->StartsWith( "-" ) ) // オプションでない引数のindexを記録
|
else if( !args[i]->StartsWith( "-" ) ) // オプションでない引数のindexを記録
|
||||||
{
|
{
|
||||||
indexList->Add(i);
|
indexList->Add(i);
|
||||||
|
|||||||
@ -28,7 +28,6 @@ private:
|
|||||||
System::Boolean ^hbSubmitVersion; // オプションフラグ
|
System::Boolean ^hbSubmitVersion; // オプションフラグ
|
||||||
System::Boolean ^hbResult;
|
System::Boolean ^hbResult;
|
||||||
System::Boolean ^hbTadVersion;
|
System::Boolean ^hbTadVersion;
|
||||||
System::Boolean ^hbConsole;
|
|
||||||
SheetCheckerError ^hErrorCode; // エラー情報
|
SheetCheckerError ^hErrorCode; // エラー情報
|
||||||
public:
|
public:
|
||||||
SheetCheckerContext()
|
SheetCheckerContext()
|
||||||
@ -36,7 +35,6 @@ public:
|
|||||||
this->hbSubmitVersion = gcnew System::Boolean(false);
|
this->hbSubmitVersion = gcnew System::Boolean(false);
|
||||||
this->hbResult = gcnew System::Boolean(false);
|
this->hbResult = gcnew System::Boolean(false);
|
||||||
this->hbTadVersion = gcnew System::Boolean(false);
|
this->hbTadVersion = gcnew System::Boolean(false);
|
||||||
this->hbConsole = gcnew System::Boolean(false);
|
|
||||||
this->hErrorCode = gcnew SheetCheckerError( SheetCheckerError::NOERROR );
|
this->hErrorCode = gcnew SheetCheckerError( SheetCheckerError::NOERROR );
|
||||||
}
|
}
|
||||||
property System::Boolean bSubmitVersion
|
property System::Boolean bSubmitVersion
|
||||||
@ -54,11 +52,6 @@ public:
|
|||||||
void set( System::Boolean flg ){ this->hbTadVersion = gcnew System::Boolean(flg); }
|
void set( System::Boolean flg ){ this->hbTadVersion = gcnew System::Boolean(flg); }
|
||||||
System::Boolean get(){ return *this->hbTadVersion; }
|
System::Boolean get(){ return *this->hbTadVersion; }
|
||||||
};
|
};
|
||||||
property System::Boolean bConsole
|
|
||||||
{
|
|
||||||
void set( System::Boolean flg ){ this->hbConsole = gcnew System::Boolean(flg); }
|
|
||||||
System::Boolean get(){ return *this->hbConsole; }
|
|
||||||
};
|
|
||||||
property SheetCheckerError ErrorCode
|
property SheetCheckerError ErrorCode
|
||||||
{
|
{
|
||||||
void set( SheetCheckerError code ){ this->hErrorCode = gcnew SheetCheckerError(code); }
|
void set( SheetCheckerError code ){ this->hErrorCode = gcnew SheetCheckerError(code); }
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user