Browse Source

Fix to last commit

adaptive-webui-19844
Christophe Dumez 14 years ago
parent
commit
85cafe530e
  1. 7
      src/scannedfoldersmodel.cpp

7
src/scannedfoldersmodel.cpp

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

Loading…
Cancel
Save