diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-05-15 17:59:35 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-05-15 17:59:35 +0000 |
commit | 69a9f7474f12e8f2bbf778c84b01e88b1e968a66 (patch) | |
tree | c7013afa6561a68399d384fa206fced97c886fd2 /cppe/src/IceE/Instance.cpp | |
parent | Fixed typo in identity conversion (diff) | |
download | ice-69a9f7474f12e8f2bbf778c84b01e88b1e968a66.tar.bz2 ice-69a9f7474f12e8f2bbf778c84b01e88b1e968a66.tar.xz ice-69a9f7474f12e8f2bbf778c84b01e88b1e968a66.zip |
Fixed typo in string conversion
Diffstat (limited to 'cppe/src/IceE/Instance.cpp')
-rw-r--r-- | cppe/src/IceE/Instance.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/src/IceE/Instance.cpp b/cppe/src/IceE/Instance.cpp index 035e8b4cc4d..67dbb2750ba 100644 --- a/cppe/src/IceE/Instance.cpp +++ b/cppe/src/IceE/Instance.cpp @@ -289,8 +289,8 @@ IceInternal::Instance::stringToIdentity(const string& s) const ident.name = tmpString; _initData.stringConverter->fromUTF8(reinterpret_cast<const Byte*>(ident.category.data()), - reinterpret_cast<const Byte*>(ident.category.data() + ident.name.size()), - tmpString); + reinterpret_cast<const Byte*>(ident.category.data() + ident.category.size()), + tmpString); ident.category = tmpString; } |