diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-06 12:41:24 +0100 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-06 12:41:24 +0100 |
| commit | c8e9e69f96c2bd0b9248d6dfab91e2d27ab8e608 (patch) | |
| tree | 237a9d3f821d01932111e9fa59af5d3e44b988c8 /lib/Utils/Observer.h | |
| parent | 03bbbf8eff11cf68a7e2325ca310e02bf3757193 (diff) | |
| download | abrt-c8e9e69f96c2bd0b9248d6dfab91e2d27ab8e608.tar.gz abrt-c8e9e69f96c2bd0b9248d6dfab91e2d27ab8e608.tar.xz abrt-c8e9e69f96c2bd0b9248d6dfab91e2d27ab8e608.zip | |
mass replace of const string& params by const char*
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'lib/Utils/Observer.h')
| -rw-r--r-- | lib/Utils/Observer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Utils/Observer.h b/lib/Utils/Observer.h index d6ec6f3..db74865 100644 --- a/lib/Utils/Observer.h +++ b/lib/Utils/Observer.h @@ -8,8 +8,8 @@ class CObserver { public: virtual ~CObserver() {} - virtual void Status(const std::string& pMessage, const char* peer, uint64_t pDest) = 0; - virtual void Warning(const std::string& pMessage, const char* peer, uint64_t pDest) = 0; + virtual void Status(const char *pMessage, const char* peer, uint64_t pDest) = 0; + virtual void Warning(const char *pMessage, const char* peer, uint64_t pDest) = 0; }; #endif |
