Re: [Development] QString::arg()

2013-02-17 Thread Olivier Goffart
On Sunday 17 February 2013 23:53:35 Mohsen Akhlaghi wrote: > QString::arg() must have Escapes cached. > > Currently it iterates with every call that doesn't seem too perfect. The > better solution is to have the iteration once at the first call after the > value change so further calls won't need

Re: [Development] QString::arg()

2013-02-17 Thread Thiago Macieira
On domingo, 17 de fevereiro de 2013 23.53.35, Mohsen Akhlaghi wrote: > QString::arg() must have Escapes cached. > > Currently it iterates with every call that doesn't seem too perfect. The > better solution is to have the iteration once at the first call after the > value change so further calls w

[Development] QString::arg()

2013-02-17 Thread Mohsen Akhlaghi
QString::arg() must have Escapes cached. Currently it iterates with every call that doesn't seem too perfect. The better solution is to have the iteration once at the first call after the value change so further calls won't need to iterate again. Since the maximum number of arguments for a si