mirror of
https://github.com/LMMS/lmms.git
synced 2026-04-24 16:08:58 -04:00
sed: s/( void )/(), s/FALSE/false/, s/TRUE/true
Replaced remaining occurences of old constants and superfluous "void"
on empty argument list of functions.
(cherry picked from commit 166701f9f3)
This commit is contained in:
@@ -35,7 +35,7 @@ stringContainer::stringContainer(const float _pitch,
|
||||
{
|
||||
for( Uint8 i = 0; i < _strings; i++ )
|
||||
{
|
||||
m_exists.append( FALSE );
|
||||
m_exists.append( false );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -98,5 +98,5 @@ void stringContainer::addString(Uint8 _harm,
|
||||
_string_loss,
|
||||
_detune,
|
||||
_state ) );
|
||||
m_exists[_id] = TRUE;
|
||||
m_exists[_id] = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user