diff options
Diffstat (limited to 'src')
-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 | } |