Changeset 7446 in vbox
- Timestamp:
- Mar 13, 2008 8:17:06 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/xclient/seamless-x11.cpp
r7106 r7446 224 224 225 225 windowTypeRaw = XXGetProperty(mDisplay, hWin, XA_ATOM, WM_TYPE_PROP, &ulCount); 226 windowType = reinterpret_cast<Atom *>(windowTypeRaw); 227 if ( (ulCount != 0) 228 && (*windowType == XInternAtom(mDisplay, WM_TYPE_DESKTOP_PROP, True))) 229 rc = true; 226 if (windowTypeRaw != NULL) 227 { 228 windowType = reinterpret_cast<Atom *>(windowTypeRaw); 229 if ( (ulCount != 0) 230 && (*windowType == XInternAtom(mDisplay, WM_TYPE_DESKTOP_PROP, True))) 231 rc = true; 232 } 230 233 return rc; 231 234 }
Note:
See TracChangeset
for help on using the changeset viewer.