summaryrefslogtreecommitdiffstats
path: root/libkdegames/kgamelcd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkdegames/kgamelcd.cpp')
-rw-r--r--libkdegames/kgamelcd.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/libkdegames/kgamelcd.cpp b/libkdegames/kgamelcd.cpp
index cc6aa5a8..cf079a15 100644
--- a/libkdegames/kgamelcd.cpp
+++ b/libkdegames/kgamelcd.cpp
@@ -28,8 +28,8 @@
//-----------------------------------------------------------------------------
-KGameLCD::KGameLCD(uint nbDigits, TQWidget *tqparent, const char *name)
- : TQLCDNumber(nbDigits, tqparent, name), _htime(800)
+KGameLCD::KGameLCD(uint nbDigits, TQWidget *parent, const char *name)
+ : TQLCDNumber(nbDigits, parent, name), _htime(800)
{
const TQPalette &p = palette();
_fgColor = p.color(TQPalette::Active, TQColorGroup::Foreground);
@@ -110,8 +110,8 @@ void KGameLCD::highlight(bool light)
}
//-----------------------------------------------------------------------------
-KGameLCDClock::KGameLCDClock(TQWidget *tqparent, const char *name)
-: KGameLCD(5, tqparent, name)
+KGameLCDClock::KGameLCDClock(TQWidget *parent, const char *name)
+: KGameLCD(5, parent, name)
{
_timerClock = new TQTimer(this);
connect(_timerClock, TQT_SIGNAL(timeout()), TQT_SLOT(timeoutClock()));
@@ -191,15 +191,15 @@ public:
TQValueVector<TQLabel *> _leadings;
};
-KGameLCDList::KGameLCDList(const TQString &title, TQWidget *tqparent,
+KGameLCDList::KGameLCDList(const TQString &title, TQWidget *parent,
const char *name)
- : TQWidget(tqparent, name)
+ : TQWidget(parent, name)
{
init(title);
}
-KGameLCDList::KGameLCDList(TQWidget *tqparent, const char *name)
- : TQWidget(tqparent, name)
+KGameLCDList::KGameLCDList(TQWidget *parent, const char *name)
+ : TQWidget(parent, name)
{
init(TQString());
}