From 59ee026b3bfd78a67f3141bd362a2f11e9e2c311 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Wed, 17 Mar 2021 05:58:47 +0000 Subject: Pascalize Get in extension item classes. --- src/modules/m_ircv3_batch.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/modules/m_ircv3_batch.cpp') diff --git a/src/modules/m_ircv3_batch.cpp b/src/modules/m_ircv3_batch.cpp index 01d3384e9..2677b24ad 100644 --- a/src/modules/m_ircv3_batch.cpp +++ b/src/modules/m_ircv3_batch.cpp @@ -74,7 +74,7 @@ class IRCv3::Batch::ManagerImpl : public Manager Batch& batch = *static_cast(tagdata.provdata); // Check if this is the first message the user is getting that is part of the batch - const intptr_t bits = batchbits.get(user); + const intptr_t bits = batchbits.Get(user); if (!(bits & batch.GetBit())) { // Send the start batch command ("BATCH +reftag TYPE"), remember the user so we can send them a @@ -125,7 +125,7 @@ class IRCv3::Batch::ManagerImpl : public Manager void RemoveFromAll(LocalUser* user) { - const intptr_t bits = batchbits.get(user); + const intptr_t bits = batchbits.Get(user); // User is quitting, remove them from all lists for (BatchList::iterator i = active_batches.begin(); i != active_batches.end(); ++i) @@ -173,7 +173,7 @@ class IRCv3::Batch::ManagerImpl : public Manager { LocalUser* const user = *i; user->Send(batchinfo.endevent); - batchbits.set(user, batchbits.get(user) & ~batch.GetBit()); + batchbits.set(user, batchbits.Get(user) & ~batch.GetBit()); } // erase() not swaperase because the reftag generation logic depends on the order of the elements -- cgit v1.3.1-10-gc9f91