Skip to content

Commit 3bbde23

Browse files
committed
chore: Replace deprecated FilePath::toString() with toFSPathString()
This solves a number of deprecation warnings during build. FilePath::toFSPathString() has been available since couple of years ago.
1 parent 6c32364 commit 3bbde23

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

ChatView/ChatRootView.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ QString ChatRootView::getChatsHistoryDir() const
164164

165165
if (auto project = ProjectExplorer::ProjectManager::startupProject()) {
166166
Settings::ProjectSettings projectSettings(project);
167-
path = projectSettings.chatHistoryPath().toString();
167+
path = projectSettings.chatHistoryPath().toFSPathString();
168168
} else {
169-
path = QString("%1/qodeassist/chat_history").arg(Core::ICore::userResourcePath().toString());
169+
path = QString("%1/qodeassist/chat_history").arg(Core::ICore::userResourcePath().toFSPathString());
170170
}
171171

172172
QDir dir(path);
@@ -350,7 +350,7 @@ void ChatRootView::showAttachFilesDialog()
350350
dialog.setFileMode(QFileDialog::ExistingFiles);
351351

352352
if (auto project = ProjectExplorer::ProjectManager::startupProject()) {
353-
dialog.setDirectory(project->projectDirectory().toString());
353+
dialog.setDirectory(project->projectDirectory().toFSPathString());
354354
}
355355

356356
if (dialog.exec() == QDialog::Accepted) {
@@ -384,7 +384,7 @@ void ChatRootView::showLinkFilesDialog()
384384
dialog.setFileMode(QFileDialog::ExistingFiles);
385385

386386
if (auto project = ProjectExplorer::ProjectManager::startupProject()) {
387-
dialog.setDirectory(project->projectDirectory().toString());
387+
dialog.setDirectory(project->projectDirectory().toFSPathString());
388388
}
389389

390390
if (dialog.exec() == QDialog::Accepted) {
@@ -437,9 +437,9 @@ void ChatRootView::openChatHistoryFolder()
437437
QString path;
438438
if (auto project = ProjectExplorer::ProjectManager::startupProject()) {
439439
Settings::ProjectSettings projectSettings(project);
440-
path = projectSettings.chatHistoryPath().toString();
440+
path = projectSettings.chatHistoryPath().toFSPathString();
441441
} else {
442-
path = QString("%1/qodeassist/chat_history").arg(Core::ICore::userResourcePath().toString());
442+
path = QString("%1/qodeassist/chat_history").arg(Core::ICore::userResourcePath().toFSPathString());
443443
}
444444

445445
QDir dir(path);
@@ -493,7 +493,7 @@ bool ChatRootView::isSyncOpenFiles() const
493493
void ChatRootView::onEditorAboutToClose(Core::IEditor *editor)
494494
{
495495
if (auto document = editor->document(); document && isSyncOpenFiles()) {
496-
QString filePath = document->filePath().toString();
496+
QString filePath = document->filePath().toFSPathString();
497497
m_linkedFiles.removeOne(filePath);
498498
emit linkedFilesChanged();
499499
}
@@ -506,7 +506,7 @@ void ChatRootView::onEditorAboutToClose(Core::IEditor *editor)
506506
void ChatRootView::onAppendLinkFileFromEditor(Core::IEditor *editor)
507507
{
508508
if (auto document = editor->document(); document && isSyncOpenFiles()) {
509-
QString filePath = document->filePath().toString();
509+
QString filePath = document->filePath().toFSPathString();
510510
if (!m_linkedFiles.contains(filePath)) {
511511
m_linkedFiles.append(filePath);
512512
emit linkedFilesChanged();

ChatView/ClientInterface.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -183,11 +183,11 @@ QString ClientInterface::getCurrentFileContext() const
183183
}
184184

185185
QString fileInfo = QString("Language: %1\nFile: %2\n\n")
186-
.arg(textDocument->mimeType(), textDocument->filePath().toString());
186+
.arg(textDocument->mimeType(), textDocument->filePath().toFSPathString());
187187

188188
QString content = textDocument->document()->toPlainText();
189189

190-
LOG_MESSAGE(QString("Got context from file: %1").arg(textDocument->filePath().toString()));
190+
LOG_MESSAGE(QString("Got context from file: %1").arg(textDocument->filePath().toFSPathString()));
191191

192192
return QString("Current file context:\n%1\nFile content:\n%2").arg(fileInfo, content);
193193
}

context/ContextManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ ProgrammingLanguage ContextManager::getDocumentLanguage(const QJsonObject &reque
8181
filePath);
8282

8383
if (!textDocument) {
84-
LOG_MESSAGE("Error: Document is not available for" + filePath.toString());
84+
LOG_MESSAGE("Error: Document is not available for" + filePath.toFSPathString());
8585
return Context::ProgrammingLanguage::Unknown;
8686
}
8787

settings/ProjectSettings.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ ProjectSettings::ProjectSettings(ProjectExplorer::Project *project)
4444
chatHistoryPath.setLabelText(Tr::tr("Chat History Path:"));
4545

4646
QString projectChatHistoryPath
47-
= QString("%1/qodeassist/chat_history").arg(Core::ICore::userResourcePath().toString());
47+
= QString("%1/qodeassist/chat_history").arg(Core::ICore::userResourcePath().toFSPathString());
4848

4949
chatHistoryPath.setDefaultValue(projectChatHistoryPath);
5050

0 commit comments

Comments
 (0)