diff options
Diffstat (limited to 'libkdegames/highscore/kexthighscore.cpp')
-rw-r--r-- | libkdegames/highscore/kexthighscore.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libkdegames/highscore/kexthighscore.cpp b/libkdegames/highscore/kexthighscore.cpp index 22fa4a85..d352a266 100644 --- a/libkdegames/highscore/kexthighscore.cpp +++ b/libkdegames/highscore/kexthighscore.cpp @@ -44,19 +44,19 @@ void setGameType(uint type) internal->setGameType(type); } -bool configure(TQWidget *tqparent) +bool configure(TQWidget *parent) { internal->checkFirst(); - ConfigDialog *cd = new ConfigDialog(tqparent); + ConfigDialog *cd = new ConfigDialog(parent); cd->exec(); bool saved = cd->hasBeenSaved(); delete cd; return saved; } -void show(TQWidget *tqparent, int rank) +void show(TQWidget *parent, int rank) { - HighscoresDialog *hd = new HighscoresDialog(rank, tqparent); + HighscoresDialog *hd = new HighscoresDialog(rank, parent); hd->exec(); delete hd; } |