summaryrefslogtreecommitdiffstats
path: root/lilo-config/kde-qt-common/images.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lilo-config/kde-qt-common/images.cpp')
-rw-r--r--lilo-config/kde-qt-common/images.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/lilo-config/kde-qt-common/images.cpp b/lilo-config/kde-qt-common/images.cpp
index a0f1c37..559b993 100644
--- a/lilo-config/kde-qt-common/images.cpp
+++ b/lilo-config/kde-qt-common/images.cpp
@@ -44,18 +44,18 @@ Images::Images(liloconf *l, TQWidget *parent, const char *name):TQWidget(parent,
{
current=""; previous=""; // Using TQString() gives problems!
lilo=l;
- tqlayout=new TQHBoxLayout(this);
- tqlayout->setMargin(SPACE_MARGIN);
- tqlayout->setSpacing(SPACE_INSIDE);
+ layout=new TQHBoxLayout(this);
+ layout->setMargin(SPACE_MARGIN);
+ layout->setSpacing(SPACE_INSIDE);
images=new TQListBox(this);
- tqlayout->addWidget(images, 1);
+ layout->addWidget(images, 1);
connect(images, TQT_SIGNAL(highlighted(const TQString &)), TQT_SLOT(imageSelected(const TQString &)));
TQWhatsThis::add(images, _("This is the list of kernels and operating systems you can currently boot. Select which one you want to edit here."));
parameters=new TQVBox(this);
parameters->setMargin(SPACE_MARGIN);
parameters->setSpacing(SPACE_INSIDE);
- tqlayout->addWidget(parameters, 2);
+ layout->addWidget(parameters, 2);
image=new EditWidget(_("&Kernel:"), "", true, parameters);
TQWhatsThis::add(image, _("Enter the filename of the kernel you want to boot here."));
connect(image, TQT_SIGNAL(textChanged(const TQString &)), this, TQT_SIGNAL(configChanged()));
@@ -75,7 +75,7 @@ Images::Images(liloconf *l, TQWidget *parent, const char *name):TQWidget(parent,
actions=new TQVBox(this);
actions->setMargin(SPACE_MARGIN);
actions->setSpacing(SPACE_INSIDE);
- tqlayout->addWidget(actions);
+ layout->addWidget(actions);
dflt=new TQPushButton(_("Set &Default"), actions);
TQWhatsThis::add(dflt, _("Boot this kernel/OS if the user doesn't make a different choice"));
connect(dflt, TQT_SIGNAL(clicked()), TQT_SLOT(dfltClicked()));