Changeset 100729 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jul 28, 2023 12:24:15 PM (19 months ago)
- svn:sync-xref-src-repo-rev:
- 158588
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/globals
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMainEventListener.cpp
r100606 r100729 51 51 #include "CExtraDataCanChangeEvent.h" 52 52 #include "CExtraDataChangedEvent.h" 53 #include "CExtPackInstalledEvent.h" 53 54 #include "CGuestMonitorChangedEvent.h" 54 55 #include "CGuestProcessIOEvent.h" … … 626 627 break; 627 628 } 629 case KVBoxEventType_OnExtPackInstalled: 630 { 631 CExtPackInstalledEvent comEventSpecific(pEvent); 632 //printf("Ext. pack installed from the file: %s\n", qPrintable(comEventSpecific.GetFilename())); 633 }; 628 634 default: break; 629 635 } -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIVirtualBoxEventHandler.cpp
r98309 r100729 187 187 << KVBoxEventType_OnMediumChanged 188 188 << KVBoxEventType_OnMediumConfigChanged 189 << KVBoxEventType_OnMediumRegistered; 189 << KVBoxEventType_OnMediumRegistered 190 << KVBoxEventType_OnExtPackInstalled; 190 191 191 192 /* Register event listener for event source aggregator: */ … … 380 381 381 382 #include "UIVirtualBoxEventHandler.moc" 382
Note:
See TracChangeset
for help on using the changeset viewer.