diff options
author | Peter Powell <petpow@saberuk.com> | 2013-05-05 19:36:46 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2013-05-21 22:11:27 +0100 |
commit | 48033e9b3a708f265c0bc2d62460a6cefa70dd45 (patch) | |
tree | f0f10444087fcf5b5c63c7ed1a672cb6ff550f5a /include/xline.h | |
parent | 994787e907cee7f6ed1b8f0ddbec95900a0f470a (diff) |
Convert XLine::Displayable to return a std::string.
Diffstat (limited to 'include/xline.h')
-rw-r--r-- | include/xline.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/xline.h b/include/xline.h index 119e29dc1..5403a0933 100644 --- a/include/xline.h +++ b/include/xline.h @@ -107,9 +107,9 @@ class CoreExport XLine : public classbase * in a form which can be used to construct an entire derived xline, * even if it is stored differently internally (e.g. GLine stores the * ident and host parts seperately but will still return ident\@host - * for its Displayable() method) + * for its Displayable() method). */ - virtual const char* Displayable() = 0; + virtual const std::string& Displayable() = 0; /** Called when the xline has just been added. */ @@ -176,7 +176,7 @@ class CoreExport KLine : public XLine virtual void Apply(User* u); - virtual const char* Displayable(); + virtual const std::string& Displayable(); virtual bool IsBurstable(); @@ -222,7 +222,7 @@ class CoreExport GLine : public XLine virtual void Apply(User* u); - virtual const char* Displayable(); + virtual const std::string& Displayable(); /** Ident mask (ident part only) */ @@ -266,7 +266,7 @@ class CoreExport ELine : public XLine virtual void OnAdd(); - virtual const char* Displayable(); + virtual const std::string& Displayable(); /** Ident mask (ident part only) */ @@ -307,7 +307,7 @@ class CoreExport ZLine : public XLine virtual void Apply(User* u); - virtual const char* Displayable(); + virtual const std::string& Displayable(); /** IP mask (no ident part) */ @@ -342,7 +342,7 @@ class CoreExport QLine : public XLine virtual void Apply(User* u); - virtual const char* Displayable(); + virtual const std::string& Displayable(); /** Nickname mask */ |