aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2001-12-29 10:39:04 (GMT)
committerfluxgen <fluxgen>2001-12-29 10:39:04 (GMT)
commita75bfa59d256fe4fa6e68665e00fe3ade08c04f7 (patch)
tree5a53f4c98ee9dc7ba756d0bfc30a854d7e8733d8 /src
parentccd408d988f097012c3b2e7d72b5ab71e6e62055 (diff)
downloadfluxbox_pavel-a75bfa59d256fe4fa6e68665e00fe3ade08c04f7.zip
fluxbox_pavel-a75bfa59d256fe4fa6e68665e00fe3ade08c04f7.tar.bz2
Updated texture constants
Diffstat (limited to 'src')
-rw-r--r--src/IconBar.cc13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/IconBar.cc b/src/IconBar.cc
index ea0ba6f..f5ec382 100644
--- a/src/IconBar.cc
+++ b/src/IconBar.cc
@@ -22,11 +22,10 @@
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)
26m_fluxboxwin(fluxboxwin),
27m_iconwin(iconwin)
28{ 26{
29 27m_fluxboxwin = fluxboxwin;
28m_iconwin = iconwin;
30} 29}
31 30
32IconBarObj::~IconBarObj() { 31IconBarObj::~IconBarObj() {
@@ -93,10 +92,10 @@ void IconBar::loadTheme(unsigned int width, unsigned int height) {
93 Pixmap tmp = m_focus_pm; 92 Pixmap tmp = m_focus_pm;
94 BTexture *texture = &(m_screen->getWindowStyle()->tab.l_focus); 93 BTexture *texture = &(m_screen->getWindowStyle()->tab.l_focus);
95 94
96 if (texture->getTexture() & BImage_ParentRelative ) { 95 if (texture->getTexture() & BImage::PARENTRELATIVE ) {
97 96
98 BTexture *pt = &(m_screen->getWindowStyle()->tab.t_focus); 97 BTexture *pt = &(m_screen->getWindowStyle()->tab.t_focus);
99 if (pt->getTexture() == (BImage_Flat | BImage_Solid)) { 98 if (pt->getTexture() == (BImage::FLAT | BImage::SOLID)) {
100 m_focus_pm = None; 99 m_focus_pm = None;
101 m_focus_pixel = pt->getColor()->getPixel(); 100 m_focus_pixel = pt->getColor()->getPixel();
102 } else 101 } else
@@ -105,7 +104,7 @@ void IconBar::loadTheme(unsigned int width, unsigned int height) {
105 104
106 } else { 105 } else {
107 106
108 if (texture->getTexture() == (BImage_Flat | BImage_Solid)) { 107 if (texture->getTexture() == (BImage::FLAT | BImage::SOLID)) {
109 m_focus_pm = None; 108 m_focus_pm = None;
110 m_focus_pixel = texture->getColor()->getPixel(); 109 m_focus_pixel = texture->getColor()->getPixel();
111 } else 110 } else