Skip to content
Snippets Groups Projects
Commit e5ec0645 authored by Daniel Molkentin's avatar Daniel Molkentin
Browse files

Use native separators on Windows.


Reviewed-By: default avatarThorbjorn Lindeijer <thorbjorn.lindeijer@nokia.com>
parent 1d50f024
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,8 @@
#include "removefiledialog.h"
#include "ui_removefiledialog.h"
#include <QtCore/QDir>
using namespace ProjectExplorer::Internal;
RemoveFileDialog::RemoveFileDialog(const QString &filePath, QWidget *parent) :
......@@ -37,7 +39,7 @@ RemoveFileDialog::RemoveFileDialog(const QString &filePath, QWidget *parent) :
m_ui(new Ui::RemoveFileDialog)
{
m_ui->setupUi(this);
m_ui->fileNameLabel->setText(filePath);
m_ui->fileNameLabel->setText(QDir::toNativeSeparators(filePath));
// TODO
m_ui->removeVCCheckBox->setVisible(false);
......
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