Client::manager() takes an xcb_window_t as argument
This commit is contained in:
parent
a616d1fe57
commit
2f718bd4fb
2 changed files with 2 additions and 2 deletions
2
client.h
2
client.h
|
@ -319,7 +319,7 @@ public:
|
||||||
#endif
|
#endif
|
||||||
NET::WindowType windowType(bool direct = false, int supported_types = 0) const;
|
NET::WindowType windowType(bool direct = false, int supported_types = 0) const;
|
||||||
|
|
||||||
bool manage(Window w, bool isMapped);
|
bool manage(xcb_window_t w, bool isMapped);
|
||||||
void releaseWindow(bool on_shutdown = false);
|
void releaseWindow(bool on_shutdown = false);
|
||||||
void destroyClient();
|
void destroyClient();
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,7 @@ namespace KWin
|
||||||
* reparenting, initial geometry, initial state, placement, etc.
|
* reparenting, initial geometry, initial state, placement, etc.
|
||||||
* Returns false if KWin is not going to manage this window.
|
* Returns false if KWin is not going to manage this window.
|
||||||
*/
|
*/
|
||||||
bool Client::manage(Window w, bool isMapped)
|
bool Client::manage(xcb_window_t w, bool isMapped)
|
||||||
{
|
{
|
||||||
StackingUpdatesBlocker stacking_blocker(workspace());
|
StackingUpdatesBlocker stacking_blocker(workspace());
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue