aboutsummaryrefslogtreecommitdiffstats
path: root/src/stringContentHandler.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-10-06 11:08:56 +0000
committerVincent Richard <[email protected]>2005-10-06 11:08:56 +0000
commitee46de08f7144af3e1101c7e505e01902b8c79a3 (patch)
tree76a4839e08d40c9807198326a2f02ec54980960c /src/stringContentHandler.cpp
parentMoved MSVC-specific defines. (diff)
downloadvmime-ee46de08f7144af3e1101c7e505e01902b8c79a3.tar.gz
vmime-ee46de08f7144af3e1101c7e505e01902b8c79a3.zip
Renamed 'progressionListener' to 'progressListener'.
Diffstat (limited to '')
-rw-r--r--src/stringContentHandler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stringContentHandler.cpp b/src/stringContentHandler.cpp
index ba23d5a1..7b8bfa1f 100644
--- a/src/stringContentHandler.cpp
+++ b/src/stringContentHandler.cpp
@@ -151,7 +151,7 @@ void stringContentHandler::generate(utility::outputStream& os,
void stringContentHandler::extract(utility::outputStream& os,
- utility::progressionListener* progress) const
+ utility::progressListener* progress) const
{
// No decoding to perform
if (!isEncoded())
@@ -164,7 +164,7 @@ void stringContentHandler::extract(utility::outputStream& os,
ref <encoder> theDecoder = m_encoding.getEncoder();
utility::inputStreamStringProxyAdapter in(m_string);
- utility::progressionListenerSizeAdapter plsa(progress, getLength());
+ utility::progressListenerSizeAdapter plsa(progress, getLength());
theDecoder->decode(in, os, &plsa);
}
@@ -172,7 +172,7 @@ void stringContentHandler::extract(utility::outputStream& os,
void stringContentHandler::extractRaw(utility::outputStream& os,
- utility::progressionListener* progress) const
+ utility::progressListener* progress) const
{
m_string.extract(os, 0, m_string.length(), progress);
}