| 1915 | } |
| 1916 | |
| 1917 | QByteArray kio_krarcProtocol::encodeString(const QString &str) |
| 1918 | { |
| 1919 | // Note: KRFUNC was not used here in order to avoid filling the log with too much information |
| 1920 | if (noencoding) |
| 1921 | return QTextCodec::codecForLocale()->fromUnicode(str); |
| 1922 | return codec->fromUnicode(str); |
| 1923 | } |
| 1924 | |
| 1925 | QString kio_krarcProtocol::decodeString(char *buf) |
| 1926 | { |
nothing calls this directly
no outgoing calls
no test coverage detected