GUI: Use canonical path as checking path.

Cleanup the path name before starting checking and saving it.
This commit is contained in:
Kimmo Varis 2010-08-09 22:25:43 +03:00
parent 7dbe5b547a
commit 2a294babc3
1 changed files with 3 additions and 3 deletions

View File

@ -232,15 +232,15 @@ void MainWindow::DoCheckFiles(const QStringList &files)
mThread->SetFiles(fileNames);
QDir inf(mCurrentDirectory);
const QString absDirectory = inf.absolutePath();
mSettings->setValue(SETTINGS_CHECK_PATH, absDirectory);
const QString checkPath = inf.canonicalPath();
mSettings->setValue(SETTINGS_CHECK_PATH, checkPath);
EnableCheckButtons(false);
mUI.mActionSettings->setEnabled(false);
mUI.mActionOpenXML->setEnabled(false);
mUI.mActionNewProjectFile->setEnabled(false);
mUI.mActionOpenProjectFile->setEnabled(false);
mUI.mResults->SetCheckDirectory(absDirectory);
mUI.mResults->SetCheckDirectory(checkPath);
Settings checkSettings = GetCppcheckSettings();
mThread->Check(checkSettings, false);