diff options
author | hjk <[email protected]> | 2024-06-13 11:24:01 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2024-06-19 14:26:05 +0000 |
commit | 39570fb675e16ff8f5f5feff9029af3d25797934 (patch) | |
tree | 519d9f9434b26709f7b4d682fe70288f9b7b664d /src/plugins/nim | |
parent | 282960528e13c1c79751422e557846e5848344f9 (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.cpp | 2 |
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); |