Changeset 99597 in vbox for trunk/src/VBox/Additions/x11/VBoxClient
- Timestamp:
- May 4, 2023 9:12:46 AM (22 months ago)
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/draganddrop.cpp
r99595 r99597 81 81 static DECLCALLBACK(int) vbclDnDTerm(void) 82 82 { 83 return g_pSvc->term(); 83 int rc = VINF_SUCCESS; 84 85 if (g_pSvc) 86 { 87 rc = g_pSvc->term(); 88 89 delete g_pSvc; 90 g_pSvc = NULL; 91 } 92 93 return rc; 84 94 } 85 95 -
trunk/src/VBox/Additions/x11/VBoxClient/draganddrop.h
r99596 r99597 83 83 public: 84 84 85 virtual ~VBClDnDSvc(void) { } 86 87 public: 88 85 89 virtual int init(void) = 0; 86 90 virtual int worker(bool volatile *pfShutdown) = 0;
Note:
See TracChangeset
for help on using the changeset viewer.