------------------------------------------------------------------------------
| 48 | |
| 49 | //------------------------------------------------------------------------------ |
| 50 | void GuiBubbleTextCtrl::popBubble() |
| 51 | { |
| 52 | // Release the mouse: |
| 53 | mInAction = false; |
| 54 | mouseUnlock(); |
| 55 | |
| 56 | // Pop the dialog |
| 57 | getRoot()->popDialogControl(mDlg); |
| 58 | |
| 59 | // Kill the popup |
| 60 | mDlg->removeObject(mPopup); |
| 61 | mPopup->removeObject(mMLText); |
| 62 | mMLText->deleteObject(); |
| 63 | mPopup->deleteObject(); |
| 64 | mDlg->deleteObject(); |
| 65 | } |
| 66 | |
| 67 | //------------------------------------------------------------------------------ |
| 68 | void GuiBubbleTextCtrl::onMouseDown(const GuiEvent &event) |
nothing calls this directly
no test coverage detected