diff options
| author | 2021-03-17 05:58:47 +0000 | |
|---|---|---|
| committer | 2021-03-17 05:58:47 +0000 | |
| commit | 59ee026b3bfd78a67f3141bd362a2f11e9e2c311 (patch) | |
| tree | b46cca2fccd025d09a266deca2035eb9b9341597 /src/modules/m_chanhistory.cpp | |
| parent | Merge branch 'insp3' into master. (diff) | |
Pascalize Get in extension item classes.
Diffstat (limited to 'src/modules/m_chanhistory.cpp')
| -rw-r--r-- | src/modules/m_chanhistory.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_chanhistory.cpp b/src/modules/m_chanhistory.cpp index 62b275f36..ac9e27e61 100644 --- a/src/modules/m_chanhistory.cpp +++ b/src/modules/m_chanhistory.cpp @@ -99,7 +99,7 @@ class HistoryMode : public ParamMode<HistoryMode, SimpleExtItem<HistoryList> > if (len > maxlines) len = maxlines; - HistoryList* history = ext.get(channel); + HistoryList* history = ext.Get(channel); if (history) { // Shrink the list if the new line number limit is lower than the old one @@ -218,7 +218,7 @@ class ModuleChanHistory if (details.IsCTCP(ctcpname) && !irc::equals(ctcpname, "ACTION")) return; - HistoryList* list = historymode.ext.get(target.Get<Channel>()); + HistoryList* list = historymode.ext.Get(target.Get<Channel>()); if (!list) return; @@ -239,7 +239,7 @@ class ModuleChanHistory if (memb->user->IsModeSet(nohistorymode)) return; - HistoryList* list = historymode.ext.get(memb->chan); + HistoryList* list = historymode.ext.Get(memb->chan); if (!list) return; |
