Commit b7c24fc3 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Missing return value

parent 173a1081
......@@ -53,7 +53,9 @@ int QVLCVariable::callback (vlc_object_t *object, const char *,
vlc_value_t, vlc_value_t cur, void *data)
{
QVLCVariable *self = (QVLCVariable *)data;
emit self->pointerChanged (object, cur.p_address);
return VLC_SUCCESS;
}
......@@ -247,4 +249,4 @@ void DialogHandler::startProgressBar (vlc_object_t *, void *value)
void DialogHandler::stopProgressBar (QWidget *dlg)
{
delete dlg;
}
\ No newline at end of file
}
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