summaryrefslogtreecommitdiffstats
path: root/src/detaileddialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/detaileddialog.cpp')
-rw-r--r--src/detaileddialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/detaileddialog.cpp b/src/detaileddialog.cpp
index 56910b1..9f9b0a2 100644
--- a/src/detaileddialog.cpp
+++ b/src/detaileddialog.cpp
@@ -123,7 +123,7 @@ detaileddialog::detaileddialog( HardwareInfo *_hwinfo, TQPixmap *_pixmap, Settin
ProcessorFrame->adjustSize();
connect(OkButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(closeDetailedDlg()));
- connect(hwinfo, TQT_SIGNAL(ACtqStatus(bool)), this, TQT_SLOT(setAC()));
+ connect(hwinfo, TQT_SIGNAL(ACStatus(bool)), this, TQT_SLOT(setAC()));
// TODO: replace event
//connect(pd, TQT_SIGNAL(schemeDataChanged()), this, TQT_SLOT(setInfos()));
connect(hwinfo, TQT_SIGNAL(generalDataChanged()), this, TQT_SLOT(setInfos()));
@@ -388,11 +388,11 @@ void detaileddialog::setAC() {
kdDebugFuncIn(trace);
if (hwinfo->getAcAdapter()) {
- LabelACtqStatus->setText( i18n("plugged in") );
+ LabelACStatus->setText( i18n("plugged in") );
LedAC->on();
} else {
LedAC->off();
- LabelACtqStatus->setText( i18n("unplugged") );
+ LabelACStatus->setText( i18n("unplugged") );
}
setInfos();