summaryrefslogtreecommitdiffstats
path: root/src/kmplayervdr.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-21 14:04:46 -0600
committerSlávek Banko <[email protected]>2012-06-18 23:49:44 +0200
commitbd8cc27bb451d668c6460c3c883dc7dd1054dd11 (patch)
treea43e2c6a3efff84e629e5189a6966b3991404e1b /src/kmplayervdr.cpp
parent06d3cc396b46988b67349ac9043243e989eed4fd (diff)
downloadkmplayer-bd8cc27bb451d668c6460c3c883dc7dd1054dd11.tar.gz
kmplayer-bd8cc27bb451d668c6460c3c883dc7dd1054dd11.zip
Rename obsolete tq methods to standard names
(cherry picked from commit 119c7d143c661c438bcd3ab82113ada44e9725fa)
Diffstat (limited to 'src/kmplayervdr.cpp')
-rw-r--r--src/kmplayervdr.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/kmplayervdr.cpp b/src/kmplayervdr.cpp
index 28ea43f..2e95252 100644
--- a/src/kmplayervdr.cpp
+++ b/src/kmplayervdr.cpp
@@ -78,8 +78,8 @@ static const char * strXVScale = "XV Scale";
KDE_NO_CDTOR_EXPORT KMPlayerPrefSourcePageVDR::KMPlayerPrefSourcePageVDR (TQWidget * parent, KMPlayer::PartBase * player)
: TQFrame (parent), m_player (player) {
//KURLRequester * v4ldevice;
- TQVBoxLayout *tqlayout = new TQVBoxLayout (this, 5, 2);
- TQGridLayout *gridtqlayout = new TQGridLayout (1, 2);
+ TQVBoxLayout *layout = new TQVBoxLayout (this, 5, 2);
+ TQGridLayout *gridlayout = new TQGridLayout (1, 2);
xv_port = new KListView (this);
xv_port->addColumn (TQString());
xv_port->header()->hide ();
@@ -90,19 +90,19 @@ KDE_NO_CDTOR_EXPORT KMPlayerPrefSourcePageVDR::KMPlayerPrefSourcePageVDR (TQWidg
vitem->setOpen (true);
TQWhatsThis::add (xv_port, i18n ("Port base of the X Video extension.\nIf left to default (0), the first available port will be used. However if you have multiple XVideo instances, you might have to provide the port to use here.\nSee the output from 'xvinfo' for more information"));
TQLabel * label = new TQLabel (i18n ("Communication port:"), this);
- gridtqlayout->addWidget (label, 0, 0);
+ gridlayout->addWidget (label, 0, 0);
tcp_port = new TQLineEdit ("", this);
TQWhatsThis::add (tcp_port, i18n ("Communication port with VDR. Default is port 2001.\nIf you use another port, with the '-p' option of 'vdr', you must set it here too."));
- gridtqlayout->addWidget (tcp_port, 0, 1);
- tqlayout->addWidget (xv_port);
- tqlayout->addLayout (gridtqlayout);
+ gridlayout->addWidget (tcp_port, 0, 1);
+ layout->addWidget (xv_port);
+ layout->addLayout (gridlayout);
scale = new TQButtonGroup (2, Qt::Vertical, i18n ("Scale"), this);
new TQRadioButton (i18n ("4:3"), scale);
new TQRadioButton (i18n ("16:9"), scale);
TQWhatsThis::add (scale, i18n ("Aspects to use when viewing VDR"));
scale->setButton (0);
- tqlayout->addWidget (scale);
- tqlayout->addItem (new TQSpacerItem (5, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding));
+ layout->addWidget (scale);
+ layout->addItem (new TQSpacerItem (5, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding));
}
KDE_NO_CDTOR_EXPORT KMPlayerPrefSourcePageVDR::~KMPlayerPrefSourcePageVDR () {}