Skip to content
Snippets Groups Projects
Commit fee3802e authored by Christian Kandeler's avatar Christian Kandeler
Browse files

Maemo: Show native separators in deployment view.

Reviewed-by: kh1
parent af8b262e
No related branches found
No related tags found
No related merge requests found
......@@ -161,7 +161,7 @@ QVariant MaemoDeployableListModel::data(const QModelIndex &index, int role) cons
const MaemoDeployable &d = deployableAt(index.row());
if (index.column() == 0 && role == Qt::DisplayRole)
return d.localFilePath;
return QDir::toNativeSeparators(d.localFilePath);
if (role == Qt::DisplayRole || role == Qt::EditRole)
return d.remoteDir;
return QVariant();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment