EBN Fixes
Maksim Orlovich
mo85 at cornell.edu
Fri Jul 13 19:47:44 BST 2007
> Just a couple of really basic EBN fixes to khtml which I did whilst
> waiting for something to compile :). Assuming they're OK, could
> someone please commit them since I don't have an svn account.
- return "[object " + className() + "]";
+ return "[object " + className() + ']';
How does this even compile? UString only has an operator+ working on
UStrings, and the single-char ctor for it is explicit.
Ditto for:
if (id == HTMLDocument::WriteLn)
- str += "\n";
+ str += '\n';
.. and a bunch of other locations.
More information about the kde-core-devel
mailing list