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/ThreadException.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/ThreadException.h')
-rw-r--r-- | cppe/include/IceE/ThreadException.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cppe/include/IceE/ThreadException.h b/cppe/include/IceE/ThreadException.h index ba247df832f..c3d3fa51655 100644 --- a/cppe/include/IceE/ThreadException.h +++ b/cppe/include/IceE/ThreadException.h @@ -20,7 +20,7 @@ class ICE_API ThreadSyscallException : public Exception public: ThreadSyscallException(const char*, int, int); - 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; @@ -37,7 +37,7 @@ class ICE_API ThreadLockedException : public Exception public: ThreadLockedException(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; @@ -51,7 +51,7 @@ class ICE_API ThreadStartedException : public Exception public: ThreadStartedException(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; @@ -65,7 +65,7 @@ class ICE_API ThreadNotStartedException : public Exception public: ThreadNotStartedException(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; @@ -79,7 +79,7 @@ class ICE_API BadThreadControlException : public Exception public: BadThreadControlException(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; |