equal
deleted
inserted
replaced
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]); |