| 462 | | // create it |
|---|
| 463 | | window = XCreateWindow(mXDisplay, parent, mX, winattrs.height - mY - mHeight, |
|---|
| 464 | | mWidth, mHeight, borderWidth, mVisual->depth, |
|---|
| 465 | | InputOutput, mVisual->visual, |
|---|
| 466 | | CWBackPixel | CWBorderPixel | CWColormap | CWEventMask, |
|---|
| 467 | | &mSWA); |
|---|
| 468 | | |
|---|
| 469 | | return window; |
|---|
| | 460 | // Create the window. |
|---|
| | 461 | return XCreateWindow(mXDisplay, parent, mX, winattrs.height - mY - mHeight, |
|---|
| | 462 | mWidth, mHeight, borderWidth, mVisual->depth, |
|---|
| | 463 | InputOutput, mVisual->visual, |
|---|
| | 464 | CWBackPixel | CWBorderPixel | CWColormap | CWEventMask, |
|---|
| | 465 | &mSWA); |
|---|