From 137455448d274c18490bced9323b1fb5908c6d0c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 2 Sep 2023 15:51:33 +0900 Subject: [PATCH] Replace TQ_*Focus* and TQ_Scale* defines Signed-off-by: Michele Calgaro --- yakuake/src/terminal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yakuake/src/terminal.cpp b/yakuake/src/terminal.cpp index 75dd942..b9947a5 100644 --- a/yakuake/src/terminal.cpp +++ b/yakuake/src/terminal.cpp @@ -42,7 +42,7 @@ Terminal::Terminal(TQWidget* parent, const char* name) : TQObject(parent, name) if (terminal_part != NULL) { terminal_widget = terminal_part->widget(); - terminal_widget->setFocusPolicy(TQ_WheelFocus); + terminal_widget->setFocusPolicy(TQWidget::WheelFocus); terminal_interface = (TerminalInterface *) (terminal_part->tqt_cast("TerminalInterface")); connect(terminal_part, TQT_SIGNAL(destroyed()), this, TQT_SLOT(deleteLater()));