Fix typo: radAll -> readAll.

This commit is contained in:
Jimmy Olgeni 2001-08-30 10:59:09 +00:00
parent f20ed5c68f
commit 2809677451
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=47155
3 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@
- QCString contents;
- contents.assign(xmlFile.readAll());
- contents.truncate(xmlFile.size());
+ QCString contents(xmlFile.radAll(), xmlFile.size() + 1);
+ QCString contents(xmlFile.readAll(), xmlFile.size() + 1);
xmlFile.close();
contents.replace( QRegExp( "<!--[^-]*-->" ), "" );

View file

@ -7,7 +7,7 @@
- QCString contents;
- contents.assign(xmlFile.readAll());
- contents.truncate(xmlFile.size());
+ QCString contents(xmlFile.radAll(), xmlFile.size() + 1);
+ QCString contents(xmlFile.readAll(), xmlFile.size() + 1);
xmlFile.close();
contents.replace( QRegExp( "<!--[^-]*-->" ), "" );

View file

@ -7,7 +7,7 @@
- QCString contents;
- contents.assign(xmlFile.readAll());
- contents.truncate(xmlFile.size());
+ QCString contents(xmlFile.radAll(), xmlFile.size() + 1);
+ QCString contents(xmlFile.readAll(), xmlFile.size() + 1);
xmlFile.close();
contents.replace( QRegExp( "<!--[^-]*-->" ), "" );