aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/nim
diff options
context:
space:
mode:
authorhjk <[email protected]>2024-06-13 11:24:01 +0200
committerhjk <[email protected]>2024-06-19 14:26:05 +0000
commit39570fb675e16ff8f5f5feff9029af3d25797934 (patch)
tree519d9f9434b26709f7b4d682fe70288f9b7b664d /src/plugins/nim
parent282960528e13c1c79751422e557846e5848344f9 (diff)
Utils: Rename PathChooser::rawFilePath() to unxepandedFilePath()
That's what the implementation does, and judging from the using code wasn't quite clear. Change-Id: I4ca776ba4da83a36162adad2dd595eb39eb0f43d Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/nim')
-rw-r--r--src/plugins/nim/project/nimtoolchain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/nim/project/nimtoolchain.cpp b/src/plugins/nim/project/nimtoolchain.cpp
index 80036592644..701883de0c0 100644
--- a/src/plugins/nim/project/nimtoolchain.cpp
+++ b/src/plugins/nim/project/nimtoolchain.cpp
@@ -141,7 +141,7 @@ public:
// Connect
connect(m_compilerCommand, &PathChooser::validChanged, this, [this] {
- const FilePath path = m_compilerCommand->rawFilePath();
+ const FilePath path = m_compilerCommand->unexpandedFilePath();
auto tc = static_cast<NimToolchain *>(toolchain());
QTC_ASSERT(tc, return);
tc->setCompilerCommand(path);