diff options
author | Michi Henning <michi@zeroc.com> | 2006-08-29 03:04:58 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2006-08-29 03:04:58 +0000 |
commit | 327084b84b81bc4b9c8f7dfbb786da604b0856b7 (patch) | |
tree | 18b8e7569c894f453dd83755bd9394ee334ae342 /cppe/src/IceE/ExceptionBase.cpp | |
parent | Use .obj instead of .o (diff) | |
download | ice-327084b84b81bc4b9c8f7dfbb786da604b0856b7.tar.bz2 ice-327084b84b81bc4b9c8f7dfbb786da604b0856b7.tar.xz ice-327084b84b81bc4b9c8f7dfbb786da604b0856b7.zip |
Bugs 1339, 1325, 1335.
Added missing -I to chatC and mfcchatC projects.
Diffstat (limited to 'cppe/src/IceE/ExceptionBase.cpp')
-rwxr-xr-x | cppe/src/IceE/ExceptionBase.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cppe/src/IceE/ExceptionBase.cpp b/cppe/src/IceE/ExceptionBase.cpp index 3b9c96f121a..327098fb317 100755 --- a/cppe/src/IceE/ExceptionBase.cpp +++ b/cppe/src/IceE/ExceptionBase.cpp @@ -37,7 +37,7 @@ IceUtil::Exception::~Exception() const char* IceUtil::Exception::_name = "IceUtil::Exception"; -const string +string IceUtil::Exception::ice_name() const { return _name; @@ -97,7 +97,7 @@ IceUtil::NullHandleException::NullHandleException(const char* file, int line) : const char* IceUtil::NullHandleException::_name = "IceUtil::NullHandleException"; -const string +string IceUtil::NullHandleException::ice_name() const { return _name; @@ -128,7 +128,7 @@ IceUtil::IllegalArgumentException::IllegalArgumentException(const char* file, in const char* IceUtil::IllegalArgumentException::_name = "IceUtil::IllegalArgumentException"; -const string +string IceUtil::IllegalArgumentException::ice_name() const { return _name; |