MCPcopy Create free account
hub / github.com/Palm1r/QodeAssist / removeFileFromAttachList

Method removeFileFromAttachList

ChatView/ChatRootView.cpp:671–682  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

669}
670
671void ChatRootView::removeFileFromAttachList(int index)
672{
673 if (index < 0 || index >= m_attachmentFiles.size()) {
674 return;
675 }
676
677 const QString removedFile = m_attachmentFiles.at(index);
678 m_attachmentFiles.removeAt(index);
679 emit attachmentFilesChanged();
680
681 LOG_MESSAGE(QString("Removed attachment file: %1").arg(removedFile));
682}
683
684void ChatRootView::showLinkFilesDialog()
685{

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.80

Tested by

no test coverage detected