Codefix: wrong parameter names and partially missing parameters

This commit is contained in:
Rubidium
2026-02-02 16:31:46 +01:00
committed by rubidium42
parent f25e1f8be1
commit c6c06e13eb
73 changed files with 206 additions and 113 deletions
+1 -1
View File
@@ -151,7 +151,7 @@ bool Textbuf::InsertChar(char32_t key)
* @param marked Replace the currently marked text with the new text.
* @param caret Move the caret to this point in the insertion string.
* @param insert_location Position at which to insert the string.
* @param replacement_end Replace all characters from #insert_location up to this location with the new string.
* @param replacement_end Replace all characters from insert_location up to this location with the new string.
* @return True on successful change of Textbuf, or false otherwise.
*/
bool Textbuf::InsertString(std::string_view str, bool marked, std::optional<size_t> caret, std::optional<size_t> insert_location, std::optional<size_t> replacement_end)