| 75 | } |
| 76 | |
| 77 | void AppConfiguration::SetOutputFormat(UINT outputFormat) |
| 78 | { |
| 79 | if (outputFormat < OUTPUT_FORMAT_HTML || outputFormat >= OUTPUT_FORMAT_LAST) |
| 80 | { |
| 81 | outputFormat = OUTPUT_FORMAT_HTML; |
| 82 | } |
| 83 | SetDwordProperty(TEXT("OutputFormat"), outputFormat); |
| 84 | } |
| 85 | |
| 86 | void AppConfiguration::SetSavingInSession(BOOL savingInSession) |
| 87 | { |
nothing calls this directly
no outgoing calls
no test coverage detected