Fix warning: "Don't call QList::last() on temporary"

[-Wclazy-detaching-temporary]

Change-Id: I5e06e44fc45c80ea1dca518611d4f0c28a738061
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Alessandro Portale
2019-01-17 01:59:27 +01:00
parent 5f5e82b0b6
commit c82d2cbd54
3 changed files with 4 additions and 4 deletions

View File

@@ -309,8 +309,8 @@ void QuickToolBar::setProperty(const QString &propertyName, const QVariant &valu
int column;
int changeSetPos = changeSet.operationList().last().pos1;
int changeSetLength = changeSet.operationList().last().text.length();
int changeSetPos = changeSet.operationList().constLast().pos1;
int changeSetLength = changeSet.operationList().constLast().text.length();
QTextCursor tc = m_editorWidget->textCursor();
tc.beginEditBlock();
changeSet.apply(&tc);