From 2e1e9ce57502b4128d8b96ea14732c45cec7f812 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Mon, 26 Jul 2010 20:52:30 +0200 Subject: [PATCH] qt4_vlm: remove double call to VLMWrapper::Edit* functions (already called by the constructor). --- modules/gui/qt4/dialogs/vlm.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modules/gui/qt4/dialogs/vlm.cpp b/modules/gui/qt4/dialogs/vlm.cpp index ef02c6c88b..407c02e6fd 100644 --- a/modules/gui/qt4/dialogs/vlm.cpp +++ b/modules/gui/qt4/dialogs/vlm.cpp @@ -227,22 +227,17 @@ void VLMDialog::addVLMItem() typeShortName = "Bcast"; vlmAwidget = new VLMBroadcast( name, inputText, outputText, b_checked, b_looped, this ); - VLMWrapper::AddBroadcast( name, inputText, outputText, b_checked, - b_looped ); break; case QVLM_VOD: typeShortName = "VOD"; vlmAwidget = new VLMVod( name, inputText, outputText, b_checked, ui.muxLedit->text(), this ); - VLMWrapper::AddVod( name, inputText, outputText, b_checked ); break; case QVLM_Schedule: typeShortName = "Sched"; vlmAwidget = new VLMSchedule( name, inputText, outputText, schetime, schedate, repeatnum, repeatdays, b_checked, this ); - VLMWrapper::AddSchedule( name, inputText, outputText, schetime, - schedate, repeatnum, repeatdays, b_checked); break; default: msg_Warn( p_intf, "Something bad happened" ); -- 2.39.2