summaryrefslogtreecommitdiffstats
path: root/lilo-config/kde
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-11 10:40:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-12 18:41:24 +0900
commit7ad2f154f24ac01a33118779950bcdfe0d16ca94 (patch)
treeb9925df5e2fc01026c3ef866224704086ab32da5 /lilo-config/kde
parent6360698f4f1660c36e1874dc496fb057f28e7b86 (diff)
downloadtdeadmin-7ad2f154f24ac01a33118779950bcdfe0d16ca94.tar.gz
tdeadmin-7ad2f154f24ac01a33118779950bcdfe0d16ca94.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit ed7858de3a395180d6ec0c03d8358610b36938ea)
Diffstat (limited to 'lilo-config/kde')
-rw-r--r--lilo-config/kde/Details.cpp4
-rw-r--r--lilo-config/kde/kcontrol.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/lilo-config/kde/Details.cpp b/lilo-config/kde/Details.cpp
index 86e47bb..b54b3e2 100644
--- a/lilo-config/kde/Details.cpp
+++ b/lilo-config/kde/Details.cpp
@@ -82,12 +82,12 @@ Details::Details(liloimage *lilo, TQWidget *parent, const char *name, WFlags /*
lock=new TQCheckBox(_("&Record boot command lines for defaults"), opts);
TQWhatsThis::add(lock, "<qt>" + _("Checking this box enables automatic recording of boot command lines as the default for the following bootups. This way, lilo \"locks\" on a choice until it is manually overridden.<br>This sets the <b>lock</b> option in lilo.conf"));
restricted=new TQCheckBox(_("R&estrict parameters"), opts);
- connect(restricted, TQT_SIGNAL(clicked()), TQT_SLOT(check_pw()));
+ connect(restricted, TQ_SIGNAL(clicked()), TQ_SLOT(check_pw()));
TQWhatsThis::add(restricted, _("If this box is checked, a password (entered below) is required only if any parameters are changed (i.e. the user can boot <i>linux</i>, but not <i>linux single</i> or <i>linux init=/bin/sh</i>).\nThis sets the <b>restricted</b> option in lilo.conf."));
TQHBox *pw=new TQHBox(page);
use_password=new TQCheckBox(_("Require &password:"), pw);
- connect(use_password, TQT_SIGNAL(clicked()), TQT_SLOT(check_pw()));
+ connect(use_password, TQ_SIGNAL(clicked()), TQ_SLOT(check_pw()));
password=new TQLineEdit(pw);
password->setMaxLength(15);
password->setEchoMode(TQLineEdit::Password);
diff --git a/lilo-config/kde/kcontrol.cpp b/lilo-config/kde/kcontrol.cpp
index bcce8aa..b12e218 100644
--- a/lilo-config/kde/kcontrol.cpp
+++ b/lilo-config/kde/kcontrol.cpp
@@ -41,7 +41,7 @@ KControl::KControl(TQWidget *parent, const char *name)
TQVBoxLayout *layout=new TQVBoxLayout(this);
m=new MainWidget(this, name);
layout->addWidget(m);
- connect(m, TQT_SIGNAL(configChanged()), TQT_SLOT(configChanged()));
+ connect(m, TQ_SIGNAL(configChanged()), TQ_SLOT(configChanged()));
if (getuid() != 0) {
m->makeReadOnly();
}