diff --git a/doc/Doxyfile b/doc/Doxyfile
index 4973d97e51e36c9f07907b15117c5f3f416c6de7..739cecd917b1761fd14cec958c47cc254418c4aa 100644
--- a/doc/Doxyfile
+++ b/doc/Doxyfile
@@ -19,7 +19,7 @@
 # The PROJECT_NAME tag is a single word (or a sequence of word surrounded
 # by quotes) that should identify the project.
 
-PROJECT_NAME         = Xerces-C
+PROJECT_NAME         = Xerces-C++
 
 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
 # This could be handy for archiving the generated documentation or
diff --git a/scripts/packageSources.pl b/scripts/packageSources.pl
index 237303b6c36e0044261d060f8189b89695a6fd68..84e6e5709fd0101f40dd3e60d7e6595ef5f29169 100644
--- a/scripts/packageSources.pl
+++ b/scripts/packageSources.pl
@@ -287,7 +287,7 @@ sub change_documentation_entities()
         open (FIZZLEOUT, ">$thefile");
         while ($line = <FIZZLE>) {
                 $line =~ s/"Xerces C\+\+ Parser"/"XML for C\+\+ Parser"/g;
-                $line =~ s/"Xerces-C"/"XML4C"/g;
+                $line =~ s/"Xerces-C\+\+"/"XML4C"/g;
                 $line =~ s/"1\.5\.1"/"3\.5\.1"/g;
                 $line =~ s/"Xerces"/"XML4C"/g;
                 $line =~ s/"xerces-c1_5_1"/"xml4c-3_5_1"/g;
@@ -311,7 +311,7 @@ sub change_doxygen()
         open (FIZZLE, $thefiledotbak);
         open (FIZZLEOUT, ">$thefile");
         while ($line = <FIZZLE>) {
-                $line =~ s/Xerces-C/XML4C/g;
+                $line =~ s/Xerces-C\+\+/XML4C/g;
                 $line =~ s/1\.5\.1/3\.5\.1/g;
                 $line =~ s/header.html/header_ibm.html/g;
                 print FIZZLEOUT $line;