Commit 930bf06c authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

modules/gui/qt4/dialogs/interaction.cpp: In InteractionDialog::update() use a...

modules/gui/qt4/dialogs/interaction.cpp: In InteractionDialog::update() use a msg_Dbg instead of a wrong msg_Err.
parent c12d6921
......@@ -174,7 +174,7 @@ void InteractionDialog::update()
{
assert( progressBar );
progressBar->setValue( (int)(p_dialog->val.f_float*1000) );
msg_Err( p_intf, "Setting progress to %i\n", progressBar->value() );
msg_Dbg( p_intf, "Setting progress to %i\n", progressBar->value() );
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment