diff options
Diffstat (limited to 'klickety/main.h')
-rw-r--r-- | klickety/main.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/klickety/main.h b/klickety/main.h index 6ff71a4c..a15252eb 100644 --- a/klickety/main.h +++ b/klickety/main.h @@ -13,10 +13,10 @@ class KLFactory : public BaseFactory KLFactory(); protected: - virtual BaseBoard *createBoard(bool, TQWidget *tqparent) - { return new KLBoard(tqparent); } - virtual BaseInterface *createInterface(TQWidget *tqparent) - { return new Field(tqparent); } + virtual BaseBoard *createBoard(bool, TQWidget *parent) + { return new KLBoard(parent); } + virtual BaseInterface *createInterface(TQWidget *parent) + { return new Field(parent); } }; class KLMainWindow : public BaseMainWindow |