diff options
Diffstat (limited to 'lilo-config/kde')
-rw-r--r-- | lilo-config/kde/Details.cpp | 4 | ||||
-rw-r--r-- | lilo-config/kde/Details.h | 2 | ||||
-rw-r--r-- | lilo-config/kde/InputBox.h | 2 | ||||
-rw-r--r-- | lilo-config/kde/kcontrol.cpp | 4 | ||||
-rw-r--r-- | lilo-config/kde/kcontrol.h | 2 |
5 files changed, 7 insertions, 7 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/Details.h b/lilo-config/kde/Details.h index f2c70aa..9053e31 100644 --- a/lilo-config/kde/Details.h +++ b/lilo-config/kde/Details.h @@ -36,7 +36,7 @@ class Details:public KDialogBase { - Q_OBJECT + TQ_OBJECT public: Details(liloimage *lilo, TQWidget *parent=0, const char *name=0, WFlags f=0); diff --git a/lilo-config/kde/InputBox.h b/lilo-config/kde/InputBox.h index 90ffad4..ceeb361 100644 --- a/lilo-config/kde/InputBox.h +++ b/lilo-config/kde/InputBox.h @@ -38,7 +38,7 @@ #include <list> class InputBox:public KDialogBase { - Q_OBJECT + TQ_OBJECT public: typedef struct { TQString label; TQString dflt; bool isFile; TQString help; } entry; diff --git a/lilo-config/kde/kcontrol.cpp b/lilo-config/kde/kcontrol.cpp index bcce8aa..2fb40c6 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(); } @@ -79,7 +79,7 @@ void KControl::configChanged() // SLOT extern "C" { - KDE_EXPORT TDECModule *create_lilo(TQWidget *parent, const char *name) + TDE_EXPORT TDECModule *create_lilo(TQWidget *parent, const char *name) { return new KControl(parent, "kcmlilo"); } diff --git a/lilo-config/kde/kcontrol.h b/lilo-config/kde/kcontrol.h index 18516fc..ba6b1ff 100644 --- a/lilo-config/kde/kcontrol.h +++ b/lilo-config/kde/kcontrol.h @@ -37,7 +37,7 @@ class TDEAboutData; class KControl: public TDECModule { - Q_OBJECT + TQ_OBJECT public: KControl(TQWidget *parent, const char *name); |