mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-30 18:45:38 +00:00
Do not make redundant copy
This commit is contained in:
parent
3ebeaaa3bb
commit
a9108a743d
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ bool CSVWorld::DataDisplayDelegate::eventFilter(QObject* target, QEvent* event)
|
|||
QColor themeColor = QApplication::palette().text().color();
|
||||
if (themeColor != mPixmapsColor)
|
||||
{
|
||||
mPixmapsColor = themeColor;
|
||||
mPixmapsColor = std::move(themeColor);
|
||||
|
||||
buildPixmaps();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue