Codechange: replace text-buf printf with fmt::format

This commit is contained in:
Rubidium
2023-04-19 20:37:21 +02:00
committed by rubidium42
parent 173ed81dbe
commit 3105d0b09e
4 changed files with 6 additions and 20 deletions

View File

@@ -47,8 +47,7 @@ struct Textbuf {
~Textbuf();
void Assign(StringID string);
void Assign(const char *text);
void CDECL Print(const char *format, ...) WARN_FORMAT(2, 3);
void Assign(const std::string_view text);
void DeleteAll();
bool InsertClipboard();