Fix to last commit

This commit is contained in:
Christophe Dumez 2010-08-16 09:20:49 +00:00
parent 7609db28f1
commit 85cafe530e

View file

@ -80,12 +80,15 @@ QVariant ScanFoldersModel::data(const QModelIndex &index, int role) const {
return QVariant();
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)
return pathData->path.replace("/", "\\");
QString ret = pathData->path;
ret = ret.replace("/", "\\");
return ret;
#else
return pathData->path;
#endif
}
if (index.column() == DownloadAtTorrentColumn && role == Qt::CheckStateRole)
return pathData->downloadAtPath ? Qt::Checked : Qt::Unchecked;
return QVariant();