KGlobal::staticQString current recomendation harmful?

Simon Hausmann kde-optimize@mail.kde.org
Mon, 13 Jan 2003 10:59:29 +0100


On Mon, Jan 13, 2003 at 08:16:29AM +0100, Roger Larsson wrote:
> But DO NOT use staticQString in all functions/methods that need it since
> it will cause numerous executions of the code before even entering main()
> - and that is were we really are slow...

No, they are not executed before main but the first time the
function is entered, and only once then.

Simon