[vlc-devel] commit: Qt: kill warnings at startup. (Jean-Baptiste Kempf )

git version control git at videolan.org
Sun Jun 14 18:25:40 CEST 2009


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Jun 14 15:11:26 2009 +0200| [ecb1212830424ee0325eec768e9c9e9e62704b38] | committer: Jean-Baptiste Kempf 

Qt: kill warnings at startup.

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

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

diff --git a/modules/gui/qt4/dialogs/external.cpp b/modules/gui/qt4/dialogs/external.cpp
index 2621076..8fee778 100644
--- a/modules/gui/qt4/dialogs/external.cpp
+++ b/modules/gui/qt4/dialogs/external.cpp
@@ -38,10 +38,10 @@
 
 DialogHandler::DialogHandler (intf_thread_t *intf, QObject *_parent)
     : intf (intf), QObject( _parent ),
-      message (VLC_OBJECT(intf), "dialog-fatal", VLC_VAR_ADDRESS),
-      login (VLC_OBJECT(intf), "dialog-login", VLC_VAR_ADDRESS),
-      question (VLC_OBJECT(intf), "dialog-question", VLC_VAR_ADDRESS),
-      progressBar (VLC_OBJECT(intf), "dialog-progress-bar", VLC_VAR_ADDRESS)
+      message (VLC_OBJECT(intf), "dialog-fatal"),
+      login (VLC_OBJECT(intf), "dialog-login"),
+      question (VLC_OBJECT(intf), "dialog-question"),
+      progressBar (VLC_OBJECT(intf), "dialog-progress-bar")
 {
     connect (&message, SIGNAL(pointerChanged(vlc_object_t *, void *)),
              SLOT(displayMessage(vlc_object_t *, void *)),




More information about the vlc-devel mailing list