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