mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-19 14:38:22 -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:
@@ -114,7 +114,7 @@ float Controller::runningTime()
|
||||
|
||||
|
||||
|
||||
void Controller::triggerFrameCounter( void )
|
||||
void Controller::triggerFrameCounter()
|
||||
{
|
||||
for( int i = 0; i < s_controllers.size(); ++i )
|
||||
{
|
||||
@@ -131,7 +131,7 @@ void Controller::triggerFrameCounter( void )
|
||||
|
||||
|
||||
|
||||
void Controller::resetFrameCounter( void )
|
||||
void Controller::resetFrameCounter()
|
||||
{
|
||||
s_frames = 0;
|
||||
}
|
||||
@@ -239,7 +239,7 @@ void Controller::loadSettings( const QDomElement & _this )
|
||||
}
|
||||
|
||||
|
||||
QString Controller::nodeName( void ) const
|
||||
QString Controller::nodeName() const
|
||||
{
|
||||
return( "Controller" );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user