]> git.sesse.net Git - vlc/commitdiff
Missing return value
authorRémi Denis-Courmont <remi@remlab.net>
Tue, 10 Mar 2009 16:05:32 +0000 (18:05 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Tue, 10 Mar 2009 16:05:32 +0000 (18:05 +0200)
modules/gui/qt4/dialogs/external.cpp

index e0096feb4cf3be77a20214ee5bd3b9e275232638..37a503725e5c22fae81aea9498faf87257f6aa43 100644 (file)
@@ -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
+}