@@ -164,9 +164,9 @@ QString ChatRootView::getChatsHistoryDir() const
164
164
165
165
if (auto project = ProjectExplorer::ProjectManager::startupProject ()) {
166
166
Settings::ProjectSettings projectSettings (project);
167
- path = projectSettings.chatHistoryPath ().toString ();
167
+ path = projectSettings.chatHistoryPath ().toFSPathString ();
168
168
} 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 ());
170
170
}
171
171
172
172
QDir dir (path);
@@ -350,7 +350,7 @@ void ChatRootView::showAttachFilesDialog()
350
350
dialog.setFileMode (QFileDialog::ExistingFiles);
351
351
352
352
if (auto project = ProjectExplorer::ProjectManager::startupProject ()) {
353
- dialog.setDirectory (project->projectDirectory ().toString ());
353
+ dialog.setDirectory (project->projectDirectory ().toFSPathString ());
354
354
}
355
355
356
356
if (dialog.exec () == QDialog::Accepted) {
@@ -384,7 +384,7 @@ void ChatRootView::showLinkFilesDialog()
384
384
dialog.setFileMode (QFileDialog::ExistingFiles);
385
385
386
386
if (auto project = ProjectExplorer::ProjectManager::startupProject ()) {
387
- dialog.setDirectory (project->projectDirectory ().toString ());
387
+ dialog.setDirectory (project->projectDirectory ().toFSPathString ());
388
388
}
389
389
390
390
if (dialog.exec () == QDialog::Accepted) {
@@ -437,9 +437,9 @@ void ChatRootView::openChatHistoryFolder()
437
437
QString path;
438
438
if (auto project = ProjectExplorer::ProjectManager::startupProject ()) {
439
439
Settings::ProjectSettings projectSettings (project);
440
- path = projectSettings.chatHistoryPath ().toString ();
440
+ path = projectSettings.chatHistoryPath ().toFSPathString ();
441
441
} 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 ());
443
443
}
444
444
445
445
QDir dir (path);
@@ -493,7 +493,7 @@ bool ChatRootView::isSyncOpenFiles() const
493
493
void ChatRootView::onEditorAboutToClose (Core::IEditor *editor)
494
494
{
495
495
if (auto document = editor->document (); document && isSyncOpenFiles ()) {
496
- QString filePath = document->filePath ().toString ();
496
+ QString filePath = document->filePath ().toFSPathString ();
497
497
m_linkedFiles.removeOne (filePath);
498
498
emit linkedFilesChanged ();
499
499
}
@@ -506,7 +506,7 @@ void ChatRootView::onEditorAboutToClose(Core::IEditor *editor)
506
506
void ChatRootView::onAppendLinkFileFromEditor (Core::IEditor *editor)
507
507
{
508
508
if (auto document = editor->document (); document && isSyncOpenFiles ()) {
509
- QString filePath = document->filePath ().toString ();
509
+ QString filePath = document->filePath ().toFSPathString ();
510
510
if (!m_linkedFiles.contains (filePath)) {
511
511
m_linkedFiles.append (filePath);
512
512
emit linkedFilesChanged ();
0 commit comments