| 256 | |
| 257 | #if !defined(SFX_MODULE) |
| 258 | void CommandData::ProcessSwitchesString(const wchar *Str) |
| 259 | { |
| 260 | wchar *Par; |
| 261 | while ((Str=AllocCmdParam(Str,&Par))!=NULL) |
| 262 | { |
| 263 | if (IsSwitch(*Par)) |
| 264 | ProcessSwitch(Par+1); |
| 265 | free(Par); |
| 266 | } |
| 267 | } |
| 268 | #endif |
| 269 | |
| 270 |
nothing calls this directly
no test coverage detected