diff options
author | Vincent Richard <[email protected]> | 2005-07-12 22:28:02 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-07-12 22:28:02 +0000 |
commit | 681297e10b666e13cc463f6fbb16236f36c3266c (patch) | |
tree | 5d2392e2283232ed3475cd9c69e22897b03e8a97 /src/messaging/serviceInfos.cpp | |
parent | Added contentHandler::extractRaw(). (diff) | |
download | vmime-681297e10b666e13cc463f6fbb16236f36c3266c.tar.gz vmime-681297e10b666e13cc463f6fbb16236f36c3266c.zip |
Reference counting and smart pointers.
Diffstat (limited to '')
-rw-r--r-- | src/messaging/serviceInfos.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/messaging/serviceInfos.cpp b/src/messaging/serviceInfos.cpp index 685ccf3e..a8359fd0 100644 --- a/src/messaging/serviceInfos.cpp +++ b/src/messaging/serviceInfos.cpp @@ -71,7 +71,7 @@ serviceInfos::~serviceInfos() } -const bool serviceInfos::hasProperty(session* s, const property& p) const +const bool serviceInfos::hasProperty(ref <session> s, const property& p) const { return s->getProperties().hasProperty(getPropertyPrefix() + p.getName()); } |