Cherry-pick from master commit 4dc26d1 (#5413)

This commit is contained in:
Johannes Lorenz
2020-03-08 08:24:46 +01:00
parent 94431ea9de
commit ab8be73047
2 changed files with 4 additions and 0 deletions

View File

@@ -75,6 +75,7 @@ Song::Song() :
m_oldTicksPerTact( DefaultTicksPerTact ),
m_masterVolumeModel( 100, 0, 200, this, tr( "Master volume" ) ),
m_masterPitchModel( 0, -12, 12, this, tr( "Master pitch" ) ),
m_nLoadingTrack( 0 ),
m_fileName(),
m_oldFileName(),
m_modified( false ),
@@ -85,6 +86,7 @@ Song::Song() :
m_renderBetweenMarkers( false ),
m_playing( false ),
m_paused( false ),
m_savingProject( false ),
m_loadingProject( false ),
m_isCancelled( false ),
m_playMode( Mode_None ),

View File

@@ -154,6 +154,8 @@ PianoRoll::PianoRoll() :
m_zoomingModel(),
m_quantizeModel(),
m_noteLenModel(),
m_scaleModel(),
m_chordModel(),
m_pattern( NULL ),
m_currentPosition(),
m_recording( false ),