summaryrefslogtreecommitdiff
path: root/src/nickcore.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-07-10 19:08:16 -0400
committerAdam <Adam@anope.org>2010-07-10 19:08:16 -0400
commit4b1e76c3bb7baa5ece83779889a46420ded3e495 (patch)
tree442b8e34d30641f1b6d455bb0eb10d3240b7f344 /src/nickcore.cpp
parent166d6f5d0933a3c639b869235f0fabdfac499886 (diff)
Added ns_set_misc and cs_set_misc.
These modules allows users to configure settable options in /ns and /cs set that will be displayed in /ns and /cs info. Removed os_info, cs_set_url, ns_set_url, cs_set_email, ns_set_icq
Diffstat (limited to 'src/nickcore.cpp')
-rw-r--r--src/nickcore.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/nickcore.cpp b/src/nickcore.cpp
index 9d51422c9..6c9392aef 100644
--- a/src/nickcore.cpp
+++ b/src/nickcore.cpp
@@ -9,9 +9,8 @@ NickCore::NickCore(const std::string &coredisplay)
if (coredisplay.empty())
throw CoreException("Empty display passed to NickCore constructor");
- display = email = greet = url = NULL;
+ display = email = greet = NULL;
ot = NULL;
- icq = 0;
language = channelcount = 0;
lastmail = 0;
@@ -63,9 +62,6 @@ NickCore::~NickCore()
delete [] this->email;
if (this->greet)
delete [] this->greet;
- if (this->url)
- delete [] this->url;
-
if (!this->memos.memos.empty())
{
for (unsigned i = 0, end = this->memos.memos.size(); i < end; ++i)