From 3ae7bcdf00154b0c0a84d78fde19ce46ad353347 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 5 Nov 2023 15:22:25 +0900 Subject: [PATCH] Replace Qt with TQt Signed-off-by: Michele Calgaro --- kmyfirewall/kmfconfigdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmyfirewall/kmfconfigdialog.cpp b/kmyfirewall/kmfconfigdialog.cpp index 07d4c11..4fa0701 100644 --- a/kmyfirewall/kmfconfigdialog.cpp +++ b/kmyfirewall/kmfconfigdialog.cpp @@ -176,7 +176,7 @@ void KMFConfigDialog::setupGeneral() { m_cb_show_selInterface = new TQCheckBox( i18n( "Show interface selection dialog at startup" ), page ); m_cb_show_selInterface->setChecked( KMFConfig::showSelInterface() ); - TQGroupBox* gb_generic = new TQGroupBox( 2, Qt::Vertical, i18n("Generic Interface"), page, "gb_generic" ); + TQGroupBox* gb_generic = new TQGroupBox( 2, TQt::Vertical, i18n("Generic Interface"), page, "gb_generic" ); /*TQLabel *text1 = */new TQLabel( i18n( "By using the Generic Interface the creation of rulesets is much easier but it is not as flexible as the Normal Interface." ), gb_generic ); m_cb_generic_interface = new TQCheckBox( i18n( "Use the Generic Interface" ), gb_generic ); m_cb_generic_interface->setChecked( KMFConfig::useGenericInterface() );