From 7c288d3dfcaed0113d720b879088ec841b8b0e2f Mon Sep 17 00:00:00 2001 From: HanishKVC Date: Tue, 7 May 2024 11:32:20 +0530 Subject: [PATCH] ChatON: Rename to partstypes for consistency --- common/chaton.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/chaton.hpp b/common/chaton.hpp index c16be0ee0..aa9ade4aa 100644 --- a/common/chaton.hpp +++ b/common/chaton.hpp @@ -264,7 +264,7 @@ public: return allin; } - std::string get_types() { + std::string get_partstypes() { return types; } @@ -376,7 +376,7 @@ inline bool chaton_tmpl_apply_single_ex( cp.dump(); tagged = cp.str(); LOGLN("DBUG:%s:%s:%s:%s", __func__, tmpl.c_str(), role.c_str(), tagged.c_str()); - types = cp.get_types(); + types = cp.get_partstypes(); lens = cp.get_partslens(); return true; } @@ -512,7 +512,7 @@ inline bool chaton_tmpl_apply_ex( tagged = cp.str(); LOGLN("DBUG:%s:%s:%s", __func__, tmpl.c_str(), tagged.c_str()); LOGLN("DBUG:%s:%s:CntSys[%d]:CntUsr[%d]:CntOthers[%d]", __func__, tmpl.c_str(), cntSystem, cntUser, cntOthers); - types = cp.get_types(); + types = cp.get_partstypes(); lens = cp.get_partslens(); return true; }