1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix(ui): remove useless variable

This commit is contained in:
Monsterovich 2018-10-25 02:44:11 +02:00
parent d54e21064c
commit 2557f5e045

View File

@ -37,7 +37,6 @@
#define NAME_COL_WIDTH 90.0
#define TIME_COL_WIDTH 90.0
QMap <QString, QColor> authorColor;
ChatMessage::ChatMessage()
{
@ -90,20 +89,18 @@ ChatMessage::Ptr ChatMessage::createChatMessage(const QString& sender, const QSt
authorFont.setBold(true);
QColor color = QColor(0, 0, 0);
QColor authorColor;
if (colorizeName && Settings::getInstance().getEnableGroupChatsColor())
{
QByteArray hash = QCryptographicHash::hash((sender.toUtf8()), QCryptographicHash::Sha256);
quint8 *data = (quint8*)hash.data();
if (!authorColor[sender].isValid())
{
authorColor[sender].setHsv(data[0], 255, 196);
}
authorColor.setHsv(data[0], 255, 196);
if (!isMe)
{
color = authorColor[sender];
color = authorColor;
}
}