mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 22:35:27 +00:00
simplewidgets.cpp: silence warning about parentheses
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
fb3ce8554c
commit
16efcf2af8
1 changed files with 1 additions and 1 deletions
|
@ -425,7 +425,7 @@ void ShiftImageTimesDialog::timeEditChanged(const QTime &time)
|
||||||
|
|
||||||
void ShiftImageTimesDialog::timeEditChanged()
|
void ShiftImageTimesDialog::timeEditChanged()
|
||||||
{
|
{
|
||||||
if (m_amount > 0 == ui.backwards->isChecked())
|
if ((m_amount > 0) == ui.backwards->isChecked())
|
||||||
m_amount *= -1;
|
m_amount *= -1;
|
||||||
if (m_amount) updateInvalid();
|
if (m_amount) updateInvalid();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue