Moved some initial values
This commit is contained in:
parent
b6ae55efd1
commit
31181406d0
1 changed files with 9 additions and 6 deletions
|
@ -22,18 +22,21 @@
|
||||||
#include "IconBar.hh"
|
#include "IconBar.hh"
|
||||||
#include "i18n.hh"
|
#include "i18n.hh"
|
||||||
|
|
||||||
IconBarObj::IconBarObj(FluxboxWindow *fluxboxwin, Window iconwin) {
|
IconBarObj::IconBarObj(FluxboxWindow *fluxboxwin, Window iconwin):
|
||||||
m_iconwin = iconwin;
|
m_fluxboxwin(fluxboxwin),
|
||||||
m_fluxboxwin = fluxboxwin;
|
m_iconwin(iconwin)
|
||||||
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
IconBarObj::~IconBarObj() {
|
IconBarObj::~IconBarObj() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
IconBar::IconBar(BScreen *scrn, Window parent) {
|
IconBar::IconBar(BScreen *scrn, Window parent):
|
||||||
m_parent = parent;
|
m_screen(scrn),
|
||||||
m_screen = scrn;
|
m_parent(parent)
|
||||||
|
{
|
||||||
m_iconlist = new IconList;
|
m_iconlist = new IconList;
|
||||||
m_display = scrn->getBaseDisplay()->getXDisplay();
|
m_display = scrn->getBaseDisplay()->getXDisplay();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue