minor cleaning
This commit is contained in:
parent
f9467a5572
commit
7deacd55ac
2 changed files with 7 additions and 7 deletions
|
@ -34,7 +34,7 @@
|
|||
|
||||
Netizen::Netizen(BScreen *scr, Window win):
|
||||
screen(scr),
|
||||
basedisplay(screen->getBaseDisplay()),
|
||||
basedisplay(scr->getBaseDisplay()),
|
||||
window(win) {
|
||||
screen = scr;
|
||||
basedisplay = screen->getBaseDisplay();
|
||||
|
|
|
@ -32,12 +32,6 @@ class Netizen;
|
|||
|
||||
|
||||
class Netizen {
|
||||
private:
|
||||
BScreen *screen;
|
||||
BaseDisplay *basedisplay;
|
||||
Window window;
|
||||
XEvent event;
|
||||
|
||||
public:
|
||||
Netizen(BScreen *, Window);
|
||||
|
||||
|
@ -53,6 +47,12 @@ public:
|
|||
void sendWindowLower(Window);
|
||||
|
||||
void sendConfigNotify(XEvent *);
|
||||
private:
|
||||
BScreen *screen;
|
||||
BaseDisplay *basedisplay;
|
||||
Window window;
|
||||
XEvent event;
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue