Fix typo: radAll -> readAll.
This commit is contained in:
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
|
@ -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( "<!--[^-]*-->" ), "" );
|
||||
|
|
|
@ -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( "<!--[^-]*-->" ), "" );
|
||||
|
|
|
@ -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( "<!--[^-]*-->" ), "" );
|
||||
|
|
Loading…
Reference in a new issue