mirror of
https://github.com/anope/anope.git
synced 2026-07-09 23:43:12 +02:00
Return references instead of pointers from the config system.
We used to return NULL from these methods but now we return an empty block so this can never actually be null now.
This commit is contained in:
@@ -61,9 +61,9 @@ public:
|
||||
return q->size();
|
||||
}
|
||||
|
||||
void OnReload(Configuration::Conf *conf) override
|
||||
void OnReload(Configuration::Conf &conf) override
|
||||
{
|
||||
const auto glnick = conf->GetModule(this)->Get<const Anope::string>("client");
|
||||
const auto glnick = conf.GetModule(this).Get<const Anope::string>("client");
|
||||
if (glnick.empty())
|
||||
throw ConfigException(Module::name + ": <client> must be defined");
|
||||
|
||||
@@ -76,21 +76,21 @@ public:
|
||||
|
||||
void OnRestart() override
|
||||
{
|
||||
const auto msg = Config->GetModule(this)->Get<const Anope::string>("globaloncycledown");
|
||||
const auto msg = Config->GetModule(this).Get<const Anope::string>("globaloncycledown");
|
||||
if (!msg.empty())
|
||||
this->SendSingle(msg, nullptr, nullptr, nullptr);
|
||||
}
|
||||
|
||||
void OnShutdown() override
|
||||
{
|
||||
const auto msg = Config->GetModule(this)->Get<const Anope::string>("globaloncycledown");
|
||||
const auto msg = Config->GetModule(this).Get<const Anope::string>("globaloncycledown");
|
||||
if (!msg.empty())
|
||||
this->SendSingle(msg, nullptr, nullptr, nullptr);
|
||||
}
|
||||
|
||||
void OnNewServer(Server *s) override
|
||||
{
|
||||
const auto msg = Config->GetModule(this)->Get<const Anope::string>("globaloncycleup");
|
||||
const auto msg = Config->GetModule(this).Get<const Anope::string>("globaloncycleup");
|
||||
if (!msg.empty() && !Me->IsSynced())
|
||||
s->Notice(global, msg);
|
||||
}
|
||||
@@ -138,7 +138,7 @@ public:
|
||||
return false;
|
||||
|
||||
Anope::string line;
|
||||
if (source && !Config->GetModule(this)->Get<bool>("anonymousglobal"))
|
||||
if (source && !Config->GetModule(this).Get<bool>("anonymousglobal"))
|
||||
{
|
||||
// A source is available and they're not anonymous.
|
||||
line = Anope::printf("[%s] %s", source->GetNick().c_str(), message.c_str());
|
||||
|
||||
Reference in New Issue
Block a user