Skip to content

Commit

Permalink
qt4: fix seek support in VLM
Browse files Browse the repository at this point in the history
clang was giving a warning about the addition of a const char* with an integer.
  • Loading branch information
ivoire committed Jan 23, 2014
1 parent 6fc0ae3 commit 379eb76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/gui/qt4/dialogs/vlm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ void VLMWrapper::ControlBroadcast( const QString& name, int BroadcastStatus,
command += " stop";
break;
case ControlBroadcastSeek:
command += " seek" + seek;
command += " seek " + QString::number( seek );
break;
}
vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
Expand Down

0 comments on commit 379eb76

Please sign in to comment.