diff options
Diffstat (limited to 'src/channels.cpp')
-rw-r--r-- | src/channels.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/channels.cpp b/src/channels.cpp index c4948c2e2..a25b2927c 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -57,17 +57,17 @@ chanrec::chanrec() memset(&modes,0,64); } -void chanrec::SetCustomMode(char mode,bool mode_on) +void chanrec::SetMode(char mode,bool mode_on) { modes[mode-65] = mode_on; if (!mode_on) - this->SetCustomModeParam(mode,"",false); + this->SetModeParam(mode,"",false); } -void chanrec::SetCustomModeParam(char mode,char* parameter,bool mode_on) +void chanrec::SetModeParam(char mode,char* parameter,bool mode_on) { - log(DEBUG,"SetCustomModeParam called"); + log(DEBUG,"SetModeParam called"); CustomModeList::iterator n = custom_mode_params.find(mode); |