diff options
Diffstat (limited to 'src/opertype.cpp')
-rw-r--r-- | src/opertype.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/opertype.cpp b/src/opertype.cpp index 7e93d1925..054c8a7e9 100644 --- a/src/opertype.cpp +++ b/src/opertype.cpp @@ -8,10 +8,10 @@ * $Id$ * */ - - #include "services.h" -OperType::OperType(const std::string &nname) : name(nname) +#include "services.h" + +OperType::OperType(const ci::string &nname) : name(nname) { } @@ -51,7 +51,7 @@ void OperType::AddPriv(const std::string &privstr) this->privs.push_back(privstr); } -const std::string &OperType::GetName() const +const ci::string &OperType::GetName() const { return this->name; } |