| 42 | IntrinsicEdNotificationBase::~IntrinsicEdNotificationBase() {} |
| 43 | |
| 44 | void IntrinsicEdNotificationBase::positionOnScreen() |
| 45 | { |
| 46 | const QPoint parentBottomRight = |
| 47 | ((QWidget*)parent())->geometry().bottomRight(); |
| 48 | setGeometry(parentBottomRight.x() - size().width(), |
| 49 | parentBottomRight.y() - size().height(), size().width(), |
| 50 | size().height()); |
| 51 | } |
| 52 | |
| 53 | void IntrinsicEdNotificationBase::onTick() |
| 54 | { |
nothing calls this directly
no outgoing calls
no test coverage detected