aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRadovan Zivkovic <pivonroll@gmail.com>2013-05-29 01:15:05 +0200
committerOswald Buddenhagen <oswald.buddenhagen@digia.com>2014-03-11 19:54:54 +0100
commit4f25a530d5c1f1e954f291bb0f26fecb42858fa4 (patch)
tree2d6323ea8f15b576986e3f0f5ebec60040ce52f8
parentcce791af9739ce38caa7ad88dde36ae44d767c1f (diff)
VcProjectFile::fileName() should return full path.
Change-Id: I6941ab1789583cbb2132614a680f3a5dd818cb94 Reviewed-by: Bojan Petrovic <bojan85@gmail.com>
-rw-r--r--src/plugins/vcprojectmanager/vcprojectfile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/vcprojectmanager/vcprojectfile.cpp b/src/plugins/vcprojectmanager/vcprojectfile.cpp
index 82c186e558..25f8a61e72 100644
--- a/src/plugins/vcprojectmanager/vcprojectfile.cpp
+++ b/src/plugins/vcprojectmanager/vcprojectfile.cpp
@@ -62,7 +62,7 @@ bool VcProjectFile::save(QString *errorString, const QString &fileName, bool aut
QString VcProjectFile::fileName() const
{
- return QFileInfo(m_filePath).fileName();
+ return m_filePath;
}
QString VcProjectFile::defaultPath() const