From 9aa6a3fbebac4c59b4a6c997a23dbac6575d1e32 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Fri, 21 Mar 2014 11:11:39 +0100 Subject: [PATCH] AudioFileProcessor: fixed various CLANG compiler warnings --- plugins/audio_file_processor/audio_file_processor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/audio_file_processor/audio_file_processor.cpp b/plugins/audio_file_processor/audio_file_processor.cpp index e6ec7b906..ff8ffdd0b 100644 --- a/plugins/audio_file_processor/audio_file_processor.cpp +++ b/plugins/audio_file_processor/audio_file_processor.cpp @@ -303,7 +303,7 @@ void audioFileProcessor::loopPointChanged( void ) //check if start & end overlap and nudge end up if so if( m_startPointModel.value() == m_endPointModel.value() ) { - m_endPointModel.setValue( qMin( m_endPointModel.value() + 0.001, 1.0d ) ); + m_endPointModel.setValue( qMin( m_endPointModel.value() + 0.001f, 1.0f ) ); } const f_cnt_t f_start = static_cast( m_startPointModel.value() *