remove handleOpenRecentlyClosedFile slot and enhance SeerEditorManagerWidget::handleOpenFile

This commit is contained in:
QuangNguyenMinh123
2025-12-18 11:24:52 +07:00
parent 95e1a3280d
commit 9c3fa2e940
4 changed files with 60 additions and 106 deletions
+2 -2
View File
@@ -1726,8 +1726,8 @@ SeerEditorWidgetSourceArea::SeerCurrentFile SeerEditorWidgetSourceArea::readCurr
SeerCurrentFile info;
info.file = QFileInfo(file()).fileName(); // extract file name from full path
info.fullname = fullname();
info.line = currentLine();
info.column = currentColumn();
info.cursorRow = currentLine();
info.cursorCol = currentColumn();
info.firstDisplayLine = firstDisplayLine();
return info;
}