Fix broken "Display playback cursor in AudioFileProcessor" (#6601)

Adds missing `lmms` namespace for `f_cnt_t` to qRegisterMetaType.
This commit is contained in:
Hyunjin Song
2023-01-01 18:53:30 +09:00
committed by GitHub
parent 19ae5280e5
commit bf00a675cc

View File

@@ -550,7 +550,7 @@ AudioFileProcessorView::AudioFileProcessorView( Instrument * _instrument,
connect( castModel<AudioFileProcessor>(), SIGNAL( isPlaying( lmms::f_cnt_t ) ),
m_waveView, SLOT( isPlaying( lmms::f_cnt_t ) ) );
qRegisterMetaType<f_cnt_t>( "f_cnt_t" );
qRegisterMetaType<lmms::f_cnt_t>( "lmms::f_cnt_t" );
setAcceptDrops( true );
}
@@ -1287,4 +1287,4 @@ PLUGIN_EXPORT Plugin * lmms_plugin_main(Model * model, void *)
}
} // namespace lmms
} // namespace lmms