In result log is empty, but if I'm trying to check bi->remainingCapacityPercent() manually I saw that value changing time after time. But log is empty and updateStatus() never was called.Code:bi = new QSystemBatteryInfo(this); connect(bi,SIGNAL(remainingCapacityPercentChanged(int)), this,SLOT(updateStatus(int))); ... void test_app::updateStatus(int newValue) { qDebug() << QString("remainingCapacityPercentChanged %1").arg(newValue); }
Also the SDK help says that there is a signal named QSystemBatteryInfo::remainingCapacityChanged() but when I'm trying to connect to it I've receive a message
Belle FP1, Qt 4.7.4, QtMobility 1.2[Qt Message] Object::connect: No such signal QSystemBatteryInfoPrivate::remainingCapacityChanged(int)



