diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:12:54 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:12:54 -0600 |
commit | a6a8ad44b48bdfff1a1a3123097a84f23105f64b (patch) | |
tree | ce37b6ebfd5a90ad734fe2e0749facf521d7fb72 /src/detaileddialog.cpp | |
parent | 80f772ad054f92e81e0eb3bc7319a32e8a4e8a05 (diff) | |
download | tdepowersave-a6a8ad44b48bdfff1a1a3123097a84f23105f64b.tar.gz tdepowersave-a6a8ad44b48bdfff1a1a3123097a84f23105f64b.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/detaileddialog.cpp')
-rw-r--r-- | src/detaileddialog.cpp | 6 |
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(); |