MCPcopy Create free account
hub / github.com/QNapi/qnapi / toString

Method toString

libqnapi/src/config/postprocessingconfig.cpp:18–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16#include <QTextStream>
17
18QString 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected