diff options
author | Michele Calgaro <[email protected]> | 2023-09-02 15:53:09 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-04 10:29:26 +0900 |
commit | 1ece3ab54a7c973756eeb539fb24df4f5563e117 (patch) | |
tree | 183d91483f9c5aa16c1174bb00050052513d56ca /kmines | |
parent | 43d761c13e328fd8096616efe9229be7a3867dfb (diff) | |
download | tdegames-1ece3ab54a7c973756eeb539fb24df4f5563e117.tar.gz tdegames-1ece3ab54a7c973756eeb539fb24df4f5563e117.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 8b08e8d5f6d410854393049d96157eded0f9b26c)
Diffstat (limited to 'kmines')
-rw-r--r-- | kmines/status.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kmines/status.cpp b/kmines/status.cpp index 1ed3f5d5..ad5f6ef3 100644 --- a/kmines/status.cpp +++ b/kmines/status.cpp @@ -74,7 +74,7 @@ Status::Status(TQWidget *parent) // smiley smiley = new Smiley(this); connect(smiley, TQT_SIGNAL(clicked()), TQT_SLOT(smileyClicked())); - smiley->setFocusPolicy(TQ_NoFocus); + smiley->setFocusPolicy(TQWidget::NoFocus); TQWhatsThis::add(smiley, i18n("Press to start a new game")); top->addWidget(smiley, 0, 2); |