<div class="gmail_quote">On Thu, Aug 11, 2011 at 4:05 PM, David Nolden <span dir="ltr"><<a href="mailto:zwabel@googlemail.com">zwabel@googlemail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

I think this makes the code uglier, without any gain. All of the<br>
changed code-locations are not performance relevant.<br>
<br>
Basically all the changes are:<br>
<br>
myString + "myText"<br>
-><br>
QString(myString + "myText")<br>
<br>
Which is the opposite of natural. So why do this?<br>
<font color="#888888"><br>
--<br>
KDevelop-devel mailing list<br>
<a href="mailto:KDevelop-devel@kdevelop.org">KDevelop-devel@kdevelop.org</a><br>
<a href="https://barney.cs.uni-potsdam.de/mailman/listinfo/kdevelop-devel" target="_blank">https://barney.cs.uni-potsdam.de/mailman/listinfo/kdevelop-devel</a><br>
</font></blockquote></div><br><div>That happens because with this change + returns a QStringBuilder.</div><div><br></div><div>It makes string concatenation to work much faster so I think it's a good trade off.</div><div>

<br></div><div>Aleix</div>