aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2001-12-17 19:23:21 (GMT)
committerfluxgen <fluxgen>2001-12-17 19:23:21 (GMT)
commit31181406d0962b99ceff590adb4065e0e511f63b (patch)
tree59c2cabf262f82f3ce0db31a49835369dd06a623 /src
parentb6ae55efd12beacf9261f0c84549c9625f243560 (diff)
downloadfluxbox_pavel-31181406d0962b99ceff590adb4065e0e511f63b.zip
fluxbox_pavel-31181406d0962b99ceff590adb4065e0e511f63b.tar.bz2
Moved some initial values
Diffstat (limited to 'src')
-rw-r--r--src/IconBar.cc15
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
25IconBarObj::IconBarObj(FluxboxWindow *fluxboxwin, Window iconwin) { 25IconBarObj::IconBarObj(FluxboxWindow *fluxboxwin, Window iconwin):
26 m_iconwin = iconwin; 26m_fluxboxwin(fluxboxwin),
27 m_fluxboxwin = fluxboxwin; 27m_iconwin(iconwin)
28{
29
28} 30}
29 31
30IconBarObj::~IconBarObj() { 32IconBarObj::~IconBarObj() {
31 33
32} 34}
33 35
34IconBar::IconBar(BScreen *scrn, Window parent) { 36IconBar::IconBar(BScreen *scrn, Window parent):
35 m_parent = parent; 37m_screen(scrn),
36 m_screen = scrn; 38m_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}