Changeset 7069 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Feb 21, 2008 11:48:05 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/xclient/seamless-x11.cpp
r7059 r7069 156 156 { 157 157 Window hClient = XmuClientWindow(mDisplay.get(), phChildren.get()[i]); 158 if ( hClient != phChildren.get()[i] &&!isVirtualRoot(hClient))158 if (!isVirtualRoot(hClient)) 159 159 addClientWindow(phChildren.get()[i]); 160 160 } … … 244 244 break; 245 245 case PropertyNotify: 246 doPropertyEvent(&event.xproperty);246 // doPropertyEvent(&event.xproperty); 247 247 break; 248 248 case ShapeNotify: … … 283 283 void VBoxGuestSeamlessX11::doMapEvent(const XMapEvent *event) 284 284 { 285 VBoxGuestWindowList::iterator iter;285 /* VBoxGuestWindowList::iterator iter; 286 286 287 287 iter = mGuestWindows.find(event->window); … … 289 289 { 290 290 iter->second->mMapped = true; 291 } 291 } */ 292 rebuildWindowTree(); 292 293 } 293 294 … … 336 337 void VBoxGuestSeamlessX11::doUnmapEvent(const XUnmapEvent *event) 337 338 { 338 VBoxGuestWindowList::iterator iter;339 /* VBoxGuestWindowList::iterator iter; 339 340 340 341 iter = mGuestWindows.find(event->window); … … 342 343 { 343 344 iter->second->mMapped = true; 344 } 345 } */ 346 rebuildWindowTree(); 345 347 } 346 348
Note:
See TracChangeset
for help on using the changeset viewer.