Ignore:
Timestamp:
Dec 15, 2009, 12:26:38 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

corelib/io: Fixed another QString deprecate.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/corelib/io/qfsfileengine_os2.cpp

    r422 r427  
    185185    // to seamlessly solve this issue, we remove such trailing spaces from path
    186186    // components here.
    187     QString fp = filePath.replace(QRegExp("(?: *)([\\\\/$]|$)"), QLatin1String("\\1"));
     187    QString fp = filePath.replace(QRegExp(QLatin1String("(?: *)([\\\\/$]|$)")),
     188                                  QLatin1String("\\1"));
    188189    nativeFilePath = QFile::encodeName(fp);
    189190}
Note: See TracChangeset for help on using the changeset viewer.