From ad0b4d1aa007816c4be004a87b0fcafd2b0eb227 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Wed, 16 Apr 2025 01:53:50 +0100 Subject: Rename TextSplitter to LineWrapper. --- include/textproc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/textproc.h b/include/textproc.h index cfde60637..f76ae8a04 100644 --- a/include/textproc.h +++ b/include/textproc.h @@ -22,7 +22,7 @@ public: void SendTo(CommandSource &source); }; -class CoreExport TextSplitter final +class CoreExport LineWrapper final { private: std::vector formatting; @@ -30,7 +30,7 @@ private: Anope::string text; public: - TextSplitter(const Anope::string &t, size_t ml = 0); + LineWrapper(const Anope::string &t, size_t ml = 0); bool GetLine(Anope::string &out); }; -- cgit