diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-31 04:15:04 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-31 04:15:04 +0000 |
commit | 0a9b7cf52a2f5551c53fc13efae0f8525ff239ab (patch) | |
tree | 0a5973c4687332168f47989e6c2bfd595871dfb5 /kmilo/kmilo_kvaio | |
parent | fc58305a1a67ab176b7f2c59b2510ee1f589469d (diff) | |
download | tdeutils-0a9b7cf52a2f5551c53fc13efae0f8525ff239ab.tar.gz tdeutils-0a9b7cf52a2f5551c53fc13efae0f8525ff239ab.zip |
Fix remaining instances of tqStatus embedded in user visible strings
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1250385 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmilo/kmilo_kvaio')
-rw-r--r-- | kmilo/kmilo_kvaio/kcmkvaio/main.cpp | 4 | ||||
-rw-r--r-- | kmilo/kmilo_kvaio/kvaio.cpp | 4 | ||||
-rw-r--r-- | kmilo/kmilo_kvaio/kvaiodriverinterface.cpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/kmilo/kmilo_kvaio/kcmkvaio/main.cpp b/kmilo/kmilo_kvaio/kcmkvaio/main.cpp index 5f8ac0e..0624c1e 100644 --- a/kmilo/kmilo_kvaio/kcmkvaio/main.cpp +++ b/kmilo/kmilo_kvaio/kcmkvaio/main.cpp @@ -100,7 +100,7 @@ void KVaioModule::save() config.writeEntry("Report_Unknown_Events", mKVaioGeneral->cbReportUnknownEvents->isChecked()); - config.writeEntry("PeriodicallyReportPowertqStatus", + config.writeEntry("PeriodicallyReportPowerStatus", mKVaioGeneral->mCbPowerMsgs->isChecked() ); config.writeEntry("PowerStatusOnBackButton", mKVaioGeneral->mCbBackButtonMsg->isChecked() ); @@ -139,7 +139,7 @@ void KVaioModule::load(bool useDefaults) mKVaioGeneral->cbReportUnknownEvents->setChecked (config.readBoolEntry("Report_Unknown_Events", false)); mKVaioGeneral->mCbPowerMsgs->setChecked - (config.readBoolEntry("PeriodicallyReportPowertqStatus", false) ); + (config.readBoolEntry("PeriodicallyReportPowerStatus", false) ); mKVaioGeneral->mCbBackButtonMsg->setChecked (config.readBoolEntry("PowerStatusOnBackButton", true) ); diff --git a/kmilo/kmilo_kvaio/kvaio.cpp b/kmilo/kmilo_kvaio/kvaio.cpp index d527970..3f52ae9 100644 --- a/kmilo/kmilo_kvaio/kvaio.cpp +++ b/kmilo/kmilo_kvaio/kvaio.cpp @@ -307,14 +307,14 @@ void KVaio::loadConfiguration(KConfig *k) mReportUnknownEvents = k->readBoolEntry("Report_Unknown_Events", false); mReportPowertqStatus = - k->readBoolEntry("PeriodicallyReportPowertqStatus", false); + k->readBoolEntry("PeriodicallyReportPowerStatus", false); mShowPowerStatusOnBackButton = k->readBoolEntry("PowerStatusOnBackButton", true); kdDebug() << "KVaio::loadConfiguration: " << endl << " mReportUnknownEvents: " << mReportUnknownEvents << endl - << " mReportPowertqStatus: " + << " mReportPowerStatus: " << mReportPowertqStatus << endl << "mShowPowerStatusOnBackButton: " << mShowPowerStatusOnBackButton << endl; diff --git a/kmilo/kmilo_kvaio/kvaiodriverinterface.cpp b/kmilo/kmilo_kvaio/kvaiodriverinterface.cpp index a08ccff..3aa8e4f 100644 --- a/kmilo/kmilo_kvaio/kvaiodriverinterface.cpp +++ b/kmilo/kmilo_kvaio/kvaiodriverinterface.cpp @@ -181,7 +181,7 @@ bool KVaioDriverInterface::getBatterytqStatus( bat2Avail = batFlags & SONYPI_BFLAGS_B2; acConnected = batFlags & SONYPI_BFLAGS_AC; -// kdDebug() << "KVaioDriverInterface::getBatterytqStatus: battery 1: " +// kdDebug() << "KVaioDriverInterface::getBatteryStatus: battery 1: " // << (bat1Avail ? "available" : "not available") << endl // << " battery 2: " // << (bat2Avail ? "available" : "not available") << endl |