| 16 | #include <QTextStream> |
| 17 | |
| 18 | QString PostProcessingConfig::toString() const { |
| 19 | QString s; |
| 20 | QTextStream(&s) << "enabled: " << enabled() << endl |
| 21 | << "encodingChangeMethod: " << encodingChangeMethod() << endl |
| 22 | << "encodingFrom: " << encodingFrom() << endl |
| 23 | << "encodingAutoDetectFrom: " << encodingAutoDetectFrom() |
| 24 | << endl |
| 25 | << "encodingTo: " << encodingTo() << endl |
| 26 | << "showAllEncodings: " << showAllEncodings() << endl |
| 27 | << "subFormat: " << subFormat() << endl |
| 28 | << "subExtension: " << subExtension() << endl |
| 29 | << "skipConvertAds: " << skipConvertAds() << endl |
| 30 | << "removeWordsEnabled: " << removeWordsEnabled() << endl |
| 31 | << "removeWords: " << removeWords().join("; ") << endl; |
| 32 | return s; |
| 33 | } |
nothing calls this directly
no outgoing calls
no test coverage detected