Removed useless 'const' on some declarations.
This commit is contained in:
parent
970df50e48
commit
59f4311b26
@ -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;
|
||||
|
@ -65,7 +65,7 @@ public:
|
||||
void setData(const utility::stringProxy& str, const vmime::encoding& enc = NO_ENCODING);
|
||||
void setData(const string& buffer, const vmime::encoding& enc = NO_ENCODING);
|
||||
void setData(const string& buffer, const string::size_type start, const string::size_type end, const vmime::encoding& enc = NO_ENCODING);
|
||||
void setData(utility::inputStream* const is, const utility::stream::size_type length, const bool own, const vmime::encoding& enc = NO_ENCODING);
|
||||
void setData(utility::inputStream* is, const utility::stream::size_type length, const bool own, const vmime::encoding& enc = NO_ENCODING);
|
||||
|
||||
// For compatibility
|
||||
contentHandler& operator=(const string& buffer);
|
||||
|
Loading…
Reference in New Issue
Block a user