summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-04-16 01:53:50 +0100
committerSadie Powell <sadie@witchery.services>2025-04-16 01:53:50 +0100
commitad0b4d1aa007816c4be004a87b0fcafd2b0eb227 (patch)
tree1244290e1b37e4247db9adcbd1911f00e5dccc03 /include
parent74e9a9d2feb3690dc06a310e0477cd6f17e25fab (diff)
Rename TextSplitter to LineWrapper.
Diffstat (limited to 'include')
-rw-r--r--include/textproc.h4
1 files changed, 2 insertions, 2 deletions
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<Anope::string> 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);
};