summaryrefslogtreecommitdiffstats
path: root/src/common/common
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-02 15:47:19 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-03 22:33:33 +0900
commit85ec028d6badd6fda0b194b62e19f8848e6524af (patch)
tree38d2e35ef1224d0055eaae3197078f75c77ead31 /src/common/common
parente73c7baebb1402b681c42d8e48b58c8a0644af22 (diff)
downloadpiklab-85ec028d.tar.gz
piklab-85ec028d.zip
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit d02729663347c003e8afbeda0e3d9227aff5806b)
Diffstat (limited to 'src/common/common')
-rw-r--r--src/common/common/synchronous.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/common/synchronous.cpp b/src/common/common/synchronous.cpp
index 05c535e..dbf782f 100644
--- a/src/common/common/synchronous.cpp
+++ b/src/common/common/synchronous.cpp
@@ -26,7 +26,7 @@ bool Synchronous::enterLoop()
TQWidget *dummy = 0;
if ( tqApp->type()!=TQApplication::Tty ) {
dummy = new TQWidget(0, 0, WType_Dialog | WShowModal);
- dummy->setFocusPolicy(TQ_NoFocus);
+ dummy->setFocusPolicy(TQWidget::NoFocus);
tqt_enter_modal(dummy);
}
TQApplication::eventLoop()->enterLoop();