QTfrontend/ui/page/pagegamestats.cpp
changeset 7842 d1c0e4341165
parent 6952 7f70f37bbf08
child 8384 a6e7a95f3b2e
equal deleted inserted replaced
7841:43e68ac28d79 7842:d1c0e4341165
   138 
   138 
   139     QMap<quint32, QVector<quint32> >::const_iterator i = healthPoints.constBegin();
   139     QMap<quint32, QVector<quint32> >::const_iterator i = healthPoints.constBegin();
   140     while (i != healthPoints.constEnd())
   140     while (i != healthPoints.constEnd())
   141     {
   141     {
   142         quint32 c = i.key();
   142         quint32 c = i.key();
   143         QColor clanColor = QColor(qRgb((c >> 16) & 255, (c >> 8) & 255, c & 255));
   143         //QColor clanColor = QColor(qRgb((c >> 16) & 255, (c >> 8) & 255, c & 255));
   144         QVector<quint32> hps = i.value();
   144         QVector<quint32> hps = i.value();
   145 
   145 
   146         QPainterPath path;
   146         QPainterPath path;
   147         if (hps.size())
   147         if (hps.size())
   148             path.moveTo(0, hps[0]);
   148             path.moveTo(0, hps[0]);