diff options
author | fluxgen <fluxgen> | 2001-12-17 19:23:21 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2001-12-17 19:23:21 (GMT) |
commit | 31181406d0962b99ceff590adb4065e0e511f63b (patch) | |
tree | 59c2cabf262f82f3ce0db31a49835369dd06a623 | |
parent | b6ae55efd12beacf9261f0c84549c9625f243560 (diff) | |
download | fluxbox-31181406d0962b99ceff590adb4065e0e511f63b.zip fluxbox-31181406d0962b99ceff590adb4065e0e511f63b.tar.bz2 |
Moved some initial values
-rw-r--r-- | src/IconBar.cc | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/IconBar.cc b/src/IconBar.cc index 982c2f0..ea0ba6f 100644 --- a/src/IconBar.cc +++ b/src/IconBar.cc | |||
@@ -22,18 +22,21 @@ | |||
22 | #include "IconBar.hh" | 22 | #include "IconBar.hh" |
23 | #include "i18n.hh" | 23 | #include "i18n.hh" |
24 | 24 | ||
25 | IconBarObj::IconBarObj(FluxboxWindow *fluxboxwin, Window iconwin) { | 25 | IconBarObj::IconBarObj(FluxboxWindow *fluxboxwin, Window iconwin): |
26 | m_iconwin = iconwin; | 26 | m_fluxboxwin(fluxboxwin), |
27 | m_fluxboxwin = fluxboxwin; | 27 | m_iconwin(iconwin) |
28 | { | ||
29 | |||
28 | } | 30 | } |
29 | 31 | ||
30 | IconBarObj::~IconBarObj() { | 32 | IconBarObj::~IconBarObj() { |
31 | 33 | ||
32 | } | 34 | } |
33 | 35 | ||
34 | IconBar::IconBar(BScreen *scrn, Window parent) { | 36 | IconBar::IconBar(BScreen *scrn, Window parent): |
35 | m_parent = parent; | 37 | m_screen(scrn), |
36 | m_screen = scrn; | 38 | m_parent(parent) |
39 | { | ||
37 | m_iconlist = new IconList; | 40 | m_iconlist = new IconList; |
38 | m_display = scrn->getBaseDisplay()->getXDisplay(); | 41 | m_display = scrn->getBaseDisplay()->getXDisplay(); |
39 | } | 42 | } |