diff options
author | Michele Calgaro <[email protected]> | 2023-11-05 15:22:25 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-05 21:37:01 +0900 |
commit | 37baea5941d05fce940c696a7435a680bbda1eee (patch) | |
tree | 682465ffa9164a2a621cd526c535b33177e1d34f | |
parent | 36e4a8d0c7e3b0744ad8d08e87f0e98e3e0c087d (diff) | |
download | kmyfirewall-37baea5941d05fce940c696a7435a680bbda1eee.tar.gz kmyfirewall-37baea5941d05fce940c696a7435a680bbda1eee.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 3ae7bcdf00154b0c0a84d78fde19ce46ad353347)
-rw-r--r-- | kmyfirewall/kmfconfigdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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( "<qt>By using the Generic Interface the creation of rulesets is much easier but it is not as flexible as the Normal Interface.</qt>" ), gb_generic ); m_cb_generic_interface = new TQCheckBox( i18n( "Use the Generic Interface" ), gb_generic ); m_cb_generic_interface->setChecked( KMFConfig::useGenericInterface() ); |