Andre Poenitz a écrit :
On Mon, Mar 20, 2006 at 11:40:23AM +0100, Abdelrazak Younes wrote:
- QColorItem * ci(new QColorItem(QColor(toqstr(x11name)),
+ QColorItem * ci(new QColorItem(lcolorcache.get(lc),
toqstr(guiname)));
QColorItem * ci = new QColorItem(lcolorcache.get(lc),
toqstr(guiname));
Or maybe
QColorItem * ci = new QColorItem(lcolorcache.get(lc),
toqstr(guiname));
or maybe
QColorItem * ci =
new QColorItem(lcolorcache.get(lc), toqstr(guiname));
but no function style initializer if it's avoidable at no cost.
You're right but it's not my code, just kidding Edwin ;-).
I will cleanup this once we decide what to do with Georg's patch.
Abdel.