The TCPSlaveBase side of this can be fully ported to QSslError once D24928
is in.
Details
- Reviewers
nicolasfella - Maniphest Tasks
- T11620: Port from KSslError to QSslError
- Commits
- R241:d074873f4703: Port ssl_cert_errors meta data from KSslError to QSslError
Diff Detail
- Repository
- R241 KIO
- Branch
- pending
- Lint
No Linters Available - Unit
No Unit Test Coverage - Build Status
Buildable 18670 Build 18688: arc lint + arc unit
src/widgets/jobuidelegate.cpp | ||
---|---|---|
365 | Nitpick, wouldn't QLatin1String be better here? c.f. Marc Mutz's talk about QStringLiteral and QLatin1String: https://youtu.be/Ov7s0GgBbOQ?t=2806 | |
src/widgets/ksslinfodialog.cpp | ||
263–283 | Nitpick, shouldn't there be a "// static" comment like the other method? Wouldn't a QVector be better here (QVector<QList<QSslError::SslError>>)? that is IIUC what the QList docs and [1] are saying. |
src/widgets/jobuidelegate.cpp | ||
---|---|---|
365 | sslMetaData is a QMap<QString, ...>, ie. value() has no QLatin1String overload, calling it with a QLatin1String will work but convert to a QString at runtime (involving a memory allocation), using QStringLiteral avoids that. | |
src/widgets/ksslinfodialog.cpp | ||
263–283 | In theory, yes. However, changing this here and now would trigger quite some ripple effect through the code, which currently is using QList everywhere, so I'd suggest to do that as a separate change (if at all), to not hide security-relevant changes under lots of QList -> QVector porting noise. The other thing to consider the consistency in this code if we change just a single use from QList to QVector, especially if that's not a performance-sensitive path and Qt6 is supposed to change all this anyway (QList's implementation going away). |
src/widgets/ksslinfodialog.h | ||
---|---|---|
113 ↗ | (On Diff #69526) | Shouldn't this be 65 now? |
src/widgets/ksslinfodialog.h | ||
---|---|---|
113 | You missed a spot |