aboutsummaryrefslogtreecommitdiffstats
path: root/src/stringContentHandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/stringContentHandler.cpp')
-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);
}