| 237 | |
| 238 | |
| 239 | void CommandData::ParseDone() |
| 240 | { |
| 241 | if (FileArgs->ItemsCount()==0 && !FileLists) |
| 242 | FileArgs->AddString(MASKALL); |
| 243 | char CmdChar=etoupper(*Command); |
| 244 | bool Extract=CmdChar=='X' || CmdChar=='E' || CmdChar=='P'; |
| 245 | if (Test && Extract) |
| 246 | Test=false; // Switch '-t' is senseless for 'X', 'E', 'P' commands. |
| 247 | BareOutput=(CmdChar=='L' || CmdChar=='V') && Command[1]=='B'; |
| 248 | } |
| 249 | |
| 250 | |
| 251 | #if !defined(SFX_MODULE) && !defined(_WIN_CE) |
no test coverage detected