Abdelrazak Younes wrote:
Helge Hafting wrote:
Abdelrazak Younes wrote:
ucs4_to_qstring is pretty simple:
QString const ucs4_to_qstring(char_type const * str, size_t ls)
{
QString s;
for (size_t i = 0; i < ls; ++i)
s.append(ucs4_to_qchar(str[i]));
return s;
}
A function call per character - ouch.
Note that this function doesn't show in Andre's profiling results. But I
am going to inline it to see if there's a difference.
No difference.
I've tried also the static trick on the QString but it brings no
improvement in windows.
Abdel.
- Re: [Patch] Abdelrazak Younes
-