From c8a3b81b3c22a3eb79afd726cfef71c0949efb7d Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 9 Dec 2023 18:25:42 +0900 Subject: Remove various '#define' strings - part 6 Signed-off-by: Michele Calgaro --- src/kmplayertvsource.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kmplayertvsource.cpp') diff --git a/src/kmplayertvsource.cpp b/src/kmplayertvsource.cpp index 7e5b8e5..aa18167 100644 --- a/src/kmplayertvsource.cpp +++ b/src/kmplayertvsource.cpp @@ -298,14 +298,14 @@ KDE_NO_EXPORT void TVDevice::updateDevicePage () { bool ok; if (input->getAttribute ("tuner").toInt (&ok) && ok) { TQWidget * widget = device_page->inputsTab->page (i); - TQTable * table = static_cast (TQT_TQWIDGET(widget->child ("PageTVChannels", "TQTable"))); + TQTable * table = static_cast (widget->child ("PageTVChannels", "TQTable")); if (table) { input->clearChildren (); for (int j = 0; jnumRows() && table->item (j, 1); ++j) { input->appendChild (new TVChannel (m_doc, table->item (j, 0)->text (), table->item (j, 1)->text ().toDouble ())); } } - TQComboBox * norms = static_cast (TQT_TQWIDGET(widget->child ("PageTVNorm", "TQComboBox"))); + TQComboBox * norms = static_cast (widget->child ("PageTVNorm", "TQComboBox")); if (norms) { input->setAttribute ("norm", norms->currentText ()); } -- cgit v1.2.1