From ee46de08f7144af3e1101c7e505e01902b8c79a3 Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Thu, 6 Oct 2005 11:08:56 +0000 Subject: Renamed 'progressionListener' to 'progressListener'. --- src/stringContentHandler.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/stringContentHandler.cpp') 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 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); } -- cgit v1.2.3