diff options
Diffstat (limited to 'libkdegames/kgamelcd.h')
-rw-r--r-- | libkdegames/kgamelcd.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libkdegames/kgamelcd.h b/libkdegames/kgamelcd.h index 543cfef5..6b84f012 100644 --- a/libkdegames/kgamelcd.h +++ b/libkdegames/kgamelcd.h @@ -44,7 +44,7 @@ class KDE_EXPORT KGameLCD : public TQLCDNumber Q_OBJECT TQ_OBJECT public: - KGameLCD(uint nbDigits, TQWidget *tqparent = 0, const char *name = 0); + KGameLCD(uint nbDigits, TQWidget *parent = 0, const char *name = 0); ~KGameLCD(); @@ -129,7 +129,7 @@ class KDE_EXPORT KGameLCDClock : public KGameLCD Q_OBJECT TQ_OBJECT public: - KGameLCDClock(TQWidget *tqparent = 0, const char *name = 0); + KGameLCDClock(TQWidget *parent = 0, const char *name = 0); ~KGameLCDClock(); @@ -198,24 +198,24 @@ public: * Constructor. * * @param title is the content of the top label. - * @param tqparent passed to the TQWidget constructor + * @param parent passed to the TQWidget constructor * @param name passed to the TQWidget constructor */ KGameLCDList(const TQString &title, - TQWidget *tqparent = 0, const char *name = 0); - KGameLCDList(TQWidget *tqparent = 0, const char *name = 0); + TQWidget *parent = 0, const char *name = 0); + KGameLCDList(TQWidget *parent = 0, const char *name = 0); ~KGameLCDList(); /** * Append a TQLCDNumber at the bottom of the list. - * The TQLCDNumber should have the KGameLCDList as tqparent. + * The TQLCDNumber should have the KGameLCDList as parent. */ void append(TQLCDNumber *lcd); /** * Append a TQLCDNumber at the bottom of the list. - * The TQLCDNumber should have the KGameLCDList as tqparent. + * The TQLCDNumber should have the KGameLCDList as parent. */ void append(const TQString &leading, TQLCDNumber *lcd); |