diff options
Diffstat (limited to 'src/IconBar.cc')
-rw-r--r-- | src/IconBar.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/IconBar.cc b/src/IconBar.cc index d49b60d..ad18468 100644 --- a/src/IconBar.cc +++ b/src/IconBar.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: IconBar.cc,v 1.18 2002/10/29 15:53:45 fluxgen Exp $ | 22 | // $Id: IconBar.cc,v 1.19 2002/11/27 21:46:14 fluxgen Exp $ |
23 | 23 | ||
24 | #include "IconBar.hh" | 24 | #include "IconBar.hh" |
25 | #include "i18n.hh" | 25 | #include "i18n.hh" |
@@ -118,7 +118,7 @@ Window IconBar::delIcon(FluxboxWindow *fluxboxwin) { | |||
118 | void IconBar::loadTheme(unsigned int width, unsigned int height) { | 118 | void IconBar::loadTheme(unsigned int width, unsigned int height) { |
119 | BImageControl *image_ctrl = m_screen->getImageControl(); | 119 | BImageControl *image_ctrl = m_screen->getImageControl(); |
120 | Pixmap tmp = m_focus_pm; | 120 | Pixmap tmp = m_focus_pm; |
121 | FbTk::Texture *texture = &(m_screen->getWindowStyle()->tab.l_focus); | 121 | const FbTk::Texture *texture = &(m_screen->getWindowStyle()->tab.l_focus); |
122 | 122 | ||
123 | //If we are working on a PARENTRELATIVE, change to right focus value | 123 | //If we are working on a PARENTRELATIVE, change to right focus value |
124 | if (texture->type() & FbTk::Texture::PARENTRELATIVE ) { | 124 | if (texture->type() & FbTk::Texture::PARENTRELATIVE ) { |
@@ -130,7 +130,7 @@ void IconBar::loadTheme(unsigned int width, unsigned int height) { | |||
130 | m_focus_pixel = texture->color().pixel(); | 130 | m_focus_pixel = texture->color().pixel(); |
131 | } else { | 131 | } else { |
132 | m_focus_pm = | 132 | m_focus_pm = |
133 | image_ctrl->renderImage(width, height, texture); | 133 | image_ctrl->renderImage(width, height, *texture); |
134 | } | 134 | } |
135 | 135 | ||
136 | if (tmp) | 136 | if (tmp) |