diff options
Diffstat (limited to 'src/Tab.cc')
-rw-r--r-- | src/Tab.cc | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -165,9 +165,9 @@ void Tab::decorate() { | |||
165 | Pixmap tmp = m_focus_pm; | 165 | Pixmap tmp = m_focus_pm; |
166 | BTexture *texture = &(m_win->getScreen()->getWindowStyle()->tab.l_focus); | 166 | BTexture *texture = &(m_win->getScreen()->getWindowStyle()->tab.l_focus); |
167 | 167 | ||
168 | if (texture->getTexture() & BImage_ParentRelative ) { | 168 | if (texture->getTexture() & BImage::PARENTRELATIVE ) { |
169 | BTexture *pt = &(m_win->getScreen()->getWindowStyle()->tab.t_focus); | 169 | BTexture *pt = &(m_win->getScreen()->getWindowStyle()->tab.t_focus); |
170 | if (pt->getTexture() == (BImage_Flat | BImage_Solid)) { | 170 | if (pt->getTexture() == (BImage::FLAT | BImage::SOLID)) { |
171 | m_focus_pm = None; | 171 | m_focus_pm = None; |
172 | m_focus_pixel = pt->getColor()->getPixel(); | 172 | m_focus_pixel = pt->getColor()->getPixel(); |
173 | } else | 173 | } else |
@@ -176,7 +176,7 @@ void Tab::decorate() { | |||
176 | if (tmp) image_ctrl->removeImage(tmp); | 176 | if (tmp) image_ctrl->removeImage(tmp); |
177 | 177 | ||
178 | } else { | 178 | } else { |
179 | if (texture->getTexture() == (BImage_Flat | BImage_Solid)) { | 179 | if (texture->getTexture() == (BImage::FLAT | BImage::SOLID)) { |
180 | m_focus_pm = None; | 180 | m_focus_pm = None; |
181 | m_focus_pixel = texture->getColor()->getPixel(); | 181 | m_focus_pixel = texture->getColor()->getPixel(); |
182 | } else | 182 | } else |
@@ -188,16 +188,16 @@ void Tab::decorate() { | |||
188 | tmp = m_unfocus_pm; | 188 | tmp = m_unfocus_pm; |
189 | texture = &(m_win->getScreen()->getWindowStyle()->tab.l_unfocus); | 189 | texture = &(m_win->getScreen()->getWindowStyle()->tab.l_unfocus); |
190 | 190 | ||
191 | if (texture->getTexture() & BImage_ParentRelative ) { | 191 | if (texture->getTexture() & BImage::PARENTRELATIVE ) { |
192 | BTexture *pt = &(m_win->getScreen()->getWindowStyle()->tab.t_unfocus); | 192 | BTexture *pt = &(m_win->getScreen()->getWindowStyle()->tab.t_unfocus); |
193 | if (pt->getTexture() == (BImage_Flat | BImage_Solid)) { | 193 | if (pt->getTexture() == (BImage::FLAT | BImage::SOLID)) { |
194 | m_unfocus_pm = None; | 194 | m_unfocus_pm = None; |
195 | m_unfocus_pixel = pt->getColor()->getPixel(); | 195 | m_unfocus_pixel = pt->getColor()->getPixel(); |
196 | } else | 196 | } else |
197 | m_unfocus_pm = | 197 | m_unfocus_pm = |
198 | image_ctrl->renderImage(m_size_w, m_size_h, pt); | 198 | image_ctrl->renderImage(m_size_w, m_size_h, pt); |
199 | } else { | 199 | } else { |
200 | if (texture->getTexture() == (BImage_Flat | BImage_Solid)) { | 200 | if (texture->getTexture() == (BImage::FLAT | BImage::SOLID)) { |
201 | m_unfocus_pm = None; | 201 | m_unfocus_pm = None; |
202 | m_unfocus_pixel = texture->getColor()->getPixel(); | 202 | m_unfocus_pixel = texture->getColor()->getPixel(); |
203 | } else | 203 | } else |