summaryrefslogtreecommitdiffstats
path: root/src/kmplayertvsource.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-09 18:25:42 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-09 18:44:34 +0900
commitc8a3b81b3c22a3eb79afd726cfef71c0949efb7d (patch)
tree43c3df751ce6f659ee6670a54a55778b922eec1f /src/kmplayertvsource.cpp
parent30650e19e38500549bfa6092b213c6d852e470e9 (diff)
downloadkmplayer-c8a3b81b3c22a3eb79afd726cfef71c0949efb7d.tar.gz
kmplayer-c8a3b81b3c22a3eb79afd726cfef71c0949efb7d.zip
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kmplayertvsource.cpp')
-rw-r--r--src/kmplayertvsource.cpp4
1 files changed, 2 insertions, 2 deletions
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 <TQTable *> (TQT_TQWIDGET(widget->child ("PageTVChannels", "TQTable")));
+ TQTable * table = static_cast <TQTable *>(widget->child ("PageTVChannels", "TQTable"));
if (table) {
input->clearChildren ();
for (int j = 0; j<table->numRows() && 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 <TQComboBox *> (TQT_TQWIDGET(widget->child ("PageTVNorm", "TQComboBox")));
+ TQComboBox * norms = static_cast <TQComboBox *>(widget->child ("PageTVNorm", "TQComboBox"));
if (norms) {
input->setAttribute ("norm", norms->currentText ());
}