From 3829adf29bab553eb3dbfcd938cdfbee682c7ea9 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Sun, 27 May 2007 21:06:30 +0000 Subject: [PATCH] Qt4 - Open: fix a broken CONNECT, found by Trax. --- modules/gui/qt4/components/open.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/gui/qt4/components/open.cpp b/modules/gui/qt4/components/open.cpp index 8894772e96..a447b0884b 100644 --- a/modules/gui/qt4/components/open.cpp +++ b/modules/gui/qt4/components/open.cpp @@ -134,7 +134,8 @@ FileOpenPanel::FileOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) : updateMRL() ); CONNECT( ui.sizeSubComboBox, currentIndexChanged( int ), this, updateMRL() ); - CONNECT( lineFileEdit, textChanged( QString ), this, browseFile() ); + +/* CONNECT( lineFileEdit, textChanged( QString ), this, browseFile() );*/ } FileOpenPanel::~FileOpenPanel() -- 2.39.2