diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:53:09 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:53:09 +0900 |
commit | 8b08e8d5f6d410854393049d96157eded0f9b26c (patch) | |
tree | 0c982da5cea10ce8af72a79a5ff12f6101309e30 /ksnake/rattler.cpp | |
parent | 9f3f41c457e2b491bda3e7ba70ad5b4f312dbff7 (diff) | |
download | tdegames-8b08e8d5f6d410854393049d96157eded0f9b26c.tar.gz tdegames-8b08e8d5f6d410854393049d96157eded0f9b26c.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ksnake/rattler.cpp')
-rw-r--r-- | ksnake/rattler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ksnake/rattler.cpp b/ksnake/rattler.cpp index 94c467fe..400e9794 100644 --- a/ksnake/rattler.cpp +++ b/ksnake/rattler.cpp @@ -46,7 +46,7 @@ int speed[4] = { 130, 95, 55, 40 }; Rattler::Rattler( TQWidget *parent, const char *name ) : TQWidget( parent, name ) { - setFocusPolicy(TQ_StrongFocus); + setFocusPolicy(TQWidget::StrongFocus); numBalls = Settings::balls(); ballsAI = Settings::ballsAI(); |