Changeset 90552 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Aug 6, 2021 2:22:04 PM (4 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationCenter.cpp
r90484 r90552 126 126 { 127 127 AssertReturnVoid(!s_pInstance); 128 s_pInstance =new UINotificationCenter(pParent);128 new UINotificationCenter(pParent); 129 129 } 130 130 … … 140 140 { 141 141 return s_pInstance; 142 } 143 144 void UINotificationCenter::invoke() 145 { 146 emit sigOpen(); 142 147 } 143 148 -
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationCenter.h
r90300 r90552 60 60 /** Returns notification-center singleton instance. */ 61 61 static UINotificationCenter *instance(); 62 63 /** Invokes notification-center. */ 64 void invoke(); 62 65 63 66 /** Appends a notification @a pObject to intenal model. */
Note:
See TracChangeset
for help on using the changeset viewer.