[vlc-devel] commit: Missing return value ( Rémi Denis-Courmont )

git version control git at videolan.org
Tue Mar 10 17:06:55 CET 2009


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Mar 10 18:05:32 2009 +0200| [b7c24fc34d817ccdf4e5ef99cf94698b7319b0b3] | committer: Rémi Denis-Courmont 

Missing return value

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b7c24fc34d817ccdf4e5ef99cf94698b7319b0b3
---

 modules/gui/qt4/dialogs/external.cpp |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/modules/gui/qt4/dialogs/external.cpp b/modules/gui/qt4/dialogs/external.cpp
index e0096fe..37a5037 100644
--- a/modules/gui/qt4/dialogs/external.cpp
+++ b/modules/gui/qt4/dialogs/external.cpp
@@ -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
+}




More information about the vlc-devel mailing list