Use xcb_window_t in Motif::readFlags
Actual method is not ported to XCB yet. REVIEW: 110269
This commit is contained in:
parent
dfec59c60e
commit
64e464afe5
2 changed files with 2 additions and 2 deletions
|
@ -72,7 +72,7 @@ StrutRect::StrutRect(const StrutRect& other)
|
|||
// Motif
|
||||
//************************************
|
||||
|
||||
void Motif::readFlags(WId w, bool& got_noborder, bool& noborder,
|
||||
void Motif::readFlags(xcb_window_t w, bool& got_noborder, bool& noborder,
|
||||
bool& resize, bool& move, bool& minimize, bool& maximize, bool& close)
|
||||
{
|
||||
Atom type;
|
||||
|
|
2
utils.h
2
utils.h
|
@ -166,7 +166,7 @@ public:
|
|||
// property. If it explicitly requests that decorations be shown
|
||||
// or hidden, 'got_noborder' is set to true and 'noborder' is set
|
||||
// appropriately.
|
||||
static void readFlags(Window w, bool& got_noborder, bool& noborder,
|
||||
static void readFlags(xcb_window_t w, bool& got_noborder, bool& noborder,
|
||||
bool& resize, bool& move, bool& minimize, bool& maximize,
|
||||
bool& close);
|
||||
struct MwmHints {
|
||||
|
|
Loading…
Reference in a new issue