create a variable and not a function declaration
found with the clang -Wvexing-parse warning
This commit is contained in:
parent
109c504ef7
commit
898e3f625a
1 changed files with 1 additions and 1 deletions
|
@ -806,7 +806,7 @@ void WindowPixmap::create()
|
||||||
if (isValid()) {
|
if (isValid()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
XServerGrabber grabber();
|
XServerGrabber grabber;
|
||||||
xcb_pixmap_t pix = xcb_generate_id(connection());
|
xcb_pixmap_t pix = xcb_generate_id(connection());
|
||||||
xcb_void_cookie_t namePixmapCookie = xcb_composite_name_window_pixmap_checked(connection(), toplevel()->frameId(), pix);
|
xcb_void_cookie_t namePixmapCookie = xcb_composite_name_window_pixmap_checked(connection(), toplevel()->frameId(), pix);
|
||||||
Xcb::WindowAttributes windowAttributes(toplevel()->frameId());
|
Xcb::WindowAttributes windowAttributes(toplevel()->frameId());
|
||||||
|
|
Loading…
Reference in a new issue