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/include/IceE/ExceptionBase.h | |
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/include/IceE/ExceptionBase.h')
-rw-r--r-- | cppe/include/IceE/ExceptionBase.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cppe/include/IceE/ExceptionBase.h b/cppe/include/IceE/ExceptionBase.h index cda643ef334..1b821fd434f 100644 --- a/cppe/include/IceE/ExceptionBase.h +++ b/cppe/include/IceE/ExceptionBase.h @@ -22,7 +22,7 @@ public: Exception(); Exception(const char*, int); virtual ~Exception(); - virtual const std::string ice_name() const; + virtual std::string ice_name() const; virtual std::string toString() const; virtual Exception* ice_clone() const; virtual void ice_throw() const; @@ -41,7 +41,7 @@ class ICE_API NullHandleException : public Exception public: NullHandleException(const char*, int); - virtual const std::string ice_name() const; + virtual std::string ice_name() const; virtual Exception* ice_clone() const; virtual void ice_throw() const; @@ -56,7 +56,7 @@ public: IllegalArgumentException(const char*, int); IllegalArgumentException(const char*, int, const std::string&); - virtual const std::string ice_name() const; + virtual std::string ice_name() const; virtual Exception* ice_clone() const; virtual void ice_throw() const; |