all repos — fluxbox @ 794e2a522e9058f9a9746d4333fb4a37c64630bd

custom fork of the fluxbox windowmanager

updated to match namechanges in BImage
fluxgen fluxgen
commit

794e2a522e9058f9a9746d4333fb4a37c64630bd

parent

d51750a4444d042200fe5e76d92cb559b6a77f9e

1 files changed, 12 insertions(+), 12 deletions(-)

jump to
M util/bsetroot.ccutil/bsetroot.cc

@@ -1,13 +1,13 @@

-#ifdef HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H # include "../config.h" #endif // HAVE_CONFIG_H -#ifdef STDC_HEADERS +#ifdef STDC_HEADERS # include <string.h> # include <stdlib.h> #endif // STDC_HEADERS -#ifdef HAVE_STDIO_H +#ifdef HAVE_STDIO_H # include <stdio.h> #endif // HAVE_STDIO_H

@@ -197,7 +197,7 @@ img_ctrl[screen]->parseColor(&c, fore);

if (! c.isAllocated()) c.setPixel(BlackPixel(getXDisplay(), screen)); - gcv.foreground = c.getPixel(); + gcv.foreground = c.pixel(); gc = XCreateGC(getXDisplay(), getScreenInfo(screen)->getRootWindow(), GCForeground , &gcv);

@@ -271,8 +271,8 @@ f.setPixel(WhitePixel(getXDisplay(), screen));

if (! b.isAllocated()) b.setPixel(BlackPixel(getXDisplay(), screen)); - gcv.foreground = f.getPixel(); - gcv.background = b.getPixel(); + gcv.foreground = f.pixel(); + gcv.background = b.pixel(); gc = XCreateGC(getXDisplay(), getScreenInfo(screen)->getRootWindow(), GCForeground | GCBackground, &gcv);

@@ -322,13 +322,13 @@ GC gc;

XGCValues gcv; img_ctrl[screen]->parseTexture(&texture, grad); - img_ctrl[screen]->parseColor(texture.getColor(), fore); - img_ctrl[screen]->parseColor(texture.getColorTo(), back); + img_ctrl[screen]->parseColor(&texture.color(), fore); + img_ctrl[screen]->parseColor(&texture.colorTo(), back); - if (! texture.getColor()->isAllocated()) - texture.getColor()->setPixel(WhitePixel(getXDisplay(), screen)); - if (! texture.getColorTo()->isAllocated()) - texture.getColorTo()->setPixel(BlackPixel(getXDisplay(), screen)); + if (! texture.color().isAllocated()) + texture.color().setPixel(WhitePixel(getXDisplay(), screen)); + if (! texture.colorTo().isAllocated()) + texture.colorTo().setPixel(BlackPixel(getXDisplay(), screen)); tmp = img_ctrl[screen]->renderImage(getScreenInfo(screen)->getWidth(), getScreenInfo(screen)->getHeight(), &texture);