Replace TRUE #define with C++ true literal

Everywhere else in the code the lower case true C++ boolean literal is
used.  Change this one place where upper case TRUE #define was used to
match.
This commit is contained in:
Mike Fleetwood 2020-03-03 09:05:16 +00:00 committed by Curtis Gedak
parent 19ba6df8f0
commit b74b05f334
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ void Dialog_Base_Partition::prepare_new_partition()
// If the original before value has not changed, then set indicator to keep start sector unchanged.
if ( ORIG_BEFORE == spinbutton_before .get_value_as_int() )
new_partition->strict_start = TRUE;
new_partition->strict_start = true;
snap_to_alignment(m_device, *new_partition);