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):
|
Netizen::Netizen(BScreen *scr, Window win):
|
||||||
screen(scr),
|
screen(scr),
|
||||||
basedisplay(screen->getBaseDisplay()),
|
basedisplay(scr->getBaseDisplay()),
|
||||||
window(win) {
|
window(win) {
|
||||||
screen = scr;
|
screen = scr;
|
||||||
basedisplay = screen->getBaseDisplay();
|
basedisplay = screen->getBaseDisplay();
|
||||||
|
|
|
@ -32,12 +32,6 @@ class Netizen;
|
||||||
|
|
||||||
|
|
||||||
class Netizen {
|
class Netizen {
|
||||||
private:
|
|
||||||
BScreen *screen;
|
|
||||||
BaseDisplay *basedisplay;
|
|
||||||
Window window;
|
|
||||||
XEvent event;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Netizen(BScreen *, Window);
|
Netizen(BScreen *, Window);
|
||||||
|
|
||||||
|
@ -53,6 +47,12 @@ public:
|
||||||
void sendWindowLower(Window);
|
void sendWindowLower(Window);
|
||||||
|
|
||||||
void sendConfigNotify(XEvent *);
|
void sendConfigNotify(XEvent *);
|
||||||
|
private:
|
||||||
|
BScreen *screen;
|
||||||
|
BaseDisplay *basedisplay;
|
||||||
|
Window window;
|
||||||
|
XEvent event;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue