From 244fb9d5faef0f51a26af949dae2c6e44ad324cd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Hugo=20Beauz=C3=A9e-Luyssen?= Date: Sun, 18 Jul 2010 19:18:31 +0200 Subject: [PATCH] Qt4: Fix a warning. WId is almost always an integer (except for Symbian) Signed-off-by: Jean-Baptiste Kempf --- modules/gui/qt4/components/interface_widgets.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gui/qt4/components/interface_widgets.cpp b/modules/gui/qt4/components/interface_widgets.cpp index c130c69906..e6ea283ec2 100644 --- a/modules/gui/qt4/components/interface_widgets.cpp +++ b/modules/gui/qt4/components/interface_widgets.cpp @@ -103,7 +103,7 @@ WId VideoWidget::request( int *pi_x, int *pi_y, if( stable ) { msg_Dbg( p_intf, "embedded video already in use" ); - return NULL; + return 0; } if( b_keep_size ) { -- 2.39.2