Ignore:
Timestamp:
Aug 2, 2010, 9:27:30 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.6.3 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/network/ssl/qsslsocket.cpp

    r651 r769  
    157157    will get emitted as soon as data has been written to the TCP socket.
    158158
     159    \section1 Symbian Platform Security Requirements
     160
     161    On Symbian, processes which use this class must have the
     162    \c NetworkServices platform security capability. If the client
     163    process lacks this capability, operations will fail.
     164
     165    Platform security capabilities are added via the
     166    \l{qmake-variable-reference.html#target-capability}{TARGET.CAPABILITY}
     167    qmake variable.
     168
    159169    \sa QSslCertificate, QSslCipher, QSslError
    160170*/
     
    11101120    Q_D(QSslSocket);
    11111121    d->configuration.ciphers.clear();
    1112     foreach (QString cipherName, ciphers.split(QLatin1String(":"),QString::SkipEmptyParts)) {
     1122    foreach (const QString &cipherName, ciphers.split(QLatin1String(":"),QString::SkipEmptyParts)) {
    11131123        for (int i = 0; i < 3; ++i) {
    11141124            // ### Crude
Note: See TracChangeset for help on using the changeset viewer.