solid: add TODO for signals that are not implemented

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2021-07-04 23:02:08 +03:00
parent c9b4c1cc7a
commit 4f371f6e55
2 changed files with 3 additions and 0 deletions

View file

@ -30,6 +30,7 @@ Button::Button(UDevDevice* device)
} else if (m_device->devicePropertyExists("SW")) {
m_type = Solid::Button::LidButton;
}
// TODO: implement pressed() signal
}
Button::~Button()

View file

@ -51,6 +51,8 @@ OpticalDrive::OpticalDrive(UDevDevice *device)
SLOT(slotEjectRequested()),
SLOT(slotEjectDone(int,QString)));
// TODO: implement ejectPressed() signal
// qDebug() << "OpticalDrive" << devicename << writeSpeeds() << writeSpeed() << readSpeed() << supportedMedia();
}