diff options
author | Vincent Richard <[email protected]> | 2005-01-07 16:35:47 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-01-07 16:35:47 +0000 |
commit | 59f4311b2632c52ff9bebfad61e26a2cb01a580c (patch) | |
tree | 66ba4efc9218d894e01a96c1023eff3fc71fcd4d /src/contentHandler.cpp | |
parent | Removed useless 'const' in return value of some functions. (diff) | |
download | vmime-59f4311b2632c52ff9bebfad61e26a2cb01a580c.tar.gz vmime-59f4311b2632c52ff9bebfad61e26a2cb01a580c.zip |
Removed useless 'const' on some declarations.
Diffstat (limited to 'src/contentHandler.cpp')
-rw-r--r-- | src/contentHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/contentHandler.cpp b/src/contentHandler.cpp index bf7923a4..295df165 100644 --- a/src/contentHandler.cpp +++ b/src/contentHandler.cpp @@ -106,7 +106,7 @@ void contentHandler::setData(const string& buffer, const string::size_type start } -void contentHandler::setData(utility::inputStream* const is, const utility::stream::size_type length, +void contentHandler::setData(utility::inputStream* is, const utility::stream::size_type length, const bool own, const vmime::encoding& enc) { m_type = TYPE_STREAM; |