Commit 379eb766 authored by Rémi Duraffort's avatar Rémi Duraffort

qt4: fix seek support in VLM

clang was giving a warning about the addition of a const char* with an integer.
parent 6fc0ae32
...@@ -752,7 +752,7 @@ void VLMWrapper::ControlBroadcast( const QString& name, int BroadcastStatus, ...@@ -752,7 +752,7 @@ void VLMWrapper::ControlBroadcast( const QString& name, int BroadcastStatus,
command += " stop"; command += " stop";
break; break;
case ControlBroadcastSeek: case ControlBroadcastSeek:
command += " seek" + seek; command += " seek " + QString::number( seek );
break; break;
} }
vlm_ExecuteCommand( p_vlm, qtu( command ), &message ); vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
......
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