From e846abff0c1e3681a541d1c91de5a4bfc608914e Mon Sep 17 00:00:00 2001 From: jez_higgins <> Date: Wed, 30 Mar 2005 11:06:02 +0000 Subject: [PATCH] ignoreableWhitespace now labelled as whitespace not characters in output --- examples/SAX/SimpleHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/SAX/SimpleHandler.cpp b/examples/SAX/SimpleHandler.cpp index 33853117..ccf3aa30 100644 --- a/examples/SAX/SimpleHandler.cpp +++ b/examples/SAX/SimpleHandler.cpp @@ -78,7 +78,7 @@ void SimpleHandler::characters(const std::string& ch) void SimpleHandler::ignorableWhitespace(const std::string& ch) { - std::cout << "Characters: " << ch << std::endl; + std::cout << "Whitespace: " << ch << std::endl; } // characters void SimpleHandler::processingInstruction(const std::string& target, const std::string& data)