diff -r 0f2326c2a325 -r 1c3b8676e58c ginebra2/SystemDeviceImpl.cpp --- a/ginebra2/SystemDeviceImpl.cpp Wed Jun 23 17:59:43 2010 +0300 +++ b/ginebra2/SystemDeviceImpl.cpp Tue Jul 06 14:03:49 2010 +0300 @@ -38,8 +38,6 @@ // set current charging state then keep it up to date with signal handler m_batteryCharging = (m_deviceInfo->currentPowerState() == QSystemDeviceInfo::WallPowerChargingBattery) ? true : false; - qDebug() << "DeviceDelegate: charging state = " << m_deviceInfo->currentPowerState(); - qDebug() << "DeviceDelegate: charging = " << m_batteryCharging; safe_connect(m_deviceInfo, SIGNAL(powerStateChanged(QSystemDeviceInfo::PowerState)), this, SLOT(handlePowerStateChanged(QSystemDeviceInfo::PowerState))); } @@ -65,7 +63,6 @@ bool batteryCharging = (state == QSystemDeviceInfo::WallPowerChargingBattery) ? true : false; - qDebug() << "DeviceDelegate: new charging state = " << state; if (batteryCharging != m_batteryCharging) { m_batteryCharging = batteryCharging; //qDebug() << "DeviceDelegate: new charging = " << m_batteryCharging;