Fix compilation error on Windows

This commit is contained in:
sledgehammer_999 2011-09-26 22:24:12 +03:00 committed by Christophe Dumez
parent c9c481fe69
commit a6294e5739

View file

@ -83,7 +83,8 @@ QVariant ScanFoldersModel::data(const QModelIndex &index, int role) const {
const PathData* pathData = m_pathList.at(index.row()); const PathData* pathData = m_pathList.at(index.row());
if (index.column() == PathColumn && role == Qt::DisplayRole) { if (index.column() == PathColumn && role == Qt::DisplayRole) {
#if defined(Q_WS_WIN) || defined(Q_OS_OS2) #if defined(Q_WS_WIN) || defined(Q_OS_OS2)
return pathData->path.replace("/", "\\"); QString ret = pathData->path;
return ret.replace("/", "\\");
#else #else
return pathData->path; return pathData->path;
#endif #endif