From 6c66e771ac4b5707830d99344738d4d0be01a8bc Mon Sep 17 00:00:00 2001 From: Daniel Molkentin <daniel.molkentin@nokia.com> Date: Wed, 28 Oct 2009 16:57:18 +0100 Subject: [PATCH] welcome mode: toNativeSeparators() for project tooltips --- src/plugins/projectexplorer/projectwelcomepagewidget.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/projectwelcomepagewidget.cpp b/src/plugins/projectexplorer/projectwelcomepagewidget.cpp index 41a737a64c5..168d852443d 100644 --- a/src/plugins/projectexplorer/projectwelcomepagewidget.cpp +++ b/src/plugins/projectexplorer/projectwelcomepagewidget.cpp @@ -125,7 +125,8 @@ void ProjectWelcomePageWidget::updateWelcomePage(const WelcomePageData &welcomeP if (welcomePageData.projectList.count() > 0) { foreach (const QStringPair &it, welcomePageData.projectList) { const QFileInfo fi(it.first); - ui->projTreeWidget->addItem(it.second, it.first, fi.absolutePath()); + ui->projTreeWidget->addItem(it.second, it.first, + QDir::toNativeSeparators(fi.absolutePath())); } } else { ui->projTreeWidget->hide(); -- GitLab