diff options
Diffstat (limited to 'lilo-config/kde-qt-common/mainwidget.cpp')
-rw-r--r-- | lilo-config/kde-qt-common/mainwidget.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lilo-config/kde-qt-common/mainwidget.cpp b/lilo-config/kde-qt-common/mainwidget.cpp index bb966f2..5acdd81 100644 --- a/lilo-config/kde-qt-common/mainwidget.cpp +++ b/lilo-config/kde-qt-common/mainwidget.cpp @@ -34,16 +34,16 @@ MainWidget::MainWidget(TQWidget *parent, const char *name) { l=new liloconf(); general=new General(l, this); - connect(general, TQT_SIGNAL(configChanged()), TQT_SIGNAL(configChanged())); + connect(general, TQ_SIGNAL(configChanged()), TQ_SIGNAL(configChanged())); images=new Images(l, this); - connect(images, TQT_SIGNAL(configChanged()), TQT_SIGNAL(configChanged())); + connect(images, TQ_SIGNAL(configChanged()), TQ_SIGNAL(configChanged())); expert=new Expert(l, this); - connect(expert, TQT_SIGNAL(configChanged()), TQT_SIGNAL(configChanged())); - connect(expert, TQT_SIGNAL(configChanged()), images, TQT_SLOT(update())); + connect(expert, TQ_SIGNAL(configChanged()), TQ_SIGNAL(configChanged())); + connect(expert, TQ_SIGNAL(configChanged()), images, TQ_SLOT(update())); addTab(general, _("&General Options")); addTab(images, _("&Operating Systems")); addTab(expert, _("&Expert")); - connect(this, TQT_SIGNAL(selected(const TQString &)), TQT_SLOT(tabChanged(const TQString &))); + connect(this, TQ_SIGNAL(selected(const TQString &)), TQ_SLOT(tabChanged(const TQString &))); load(); arrangeWidgets(); } |