all repos — fluxbox @ 6d2a92c059001c023a9d3f7e6bfc65ce0346e5ef

custom fork of the fluxbox windowmanager

just a minor change
fluxgen fluxgen
commit

6d2a92c059001c023a9d3f7e6bfc65ce0346e5ef

parent

bce70c6714ff85336693d3366549c9974c302ef0

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

jump to
M src/FbTk/Font.ccsrc/FbTk/Font.cc

@@ -99,13 +99,13 @@ typedef FontCache::iterator FontCacheIt;

FontCache font_cache; -void resetEffects(FbTk::Font* font) { - font->setHalo(false); - font->setHaloColor(FbTk::Color("white", DefaultScreen(FbTk::App::instance()->display()))); - font->setShadow(false); - font->setShadowColor(FbTk::Color("black", DefaultScreen(FbTk::App::instance()->display()))); - font->setShadowOffY(2); - font->setShadowOffX(2); +void resetEffects(FbTk::Font& font) { + font.setHalo(false); + font.setHaloColor(FbTk::Color("white", DefaultScreen(FbTk::App::instance()->display()))); + font.setShadow(false); + font.setShadowColor(FbTk::Color("black", DefaultScreen(FbTk::App::instance()->display()))); + font.setShadowOffY(2); + font.setShadowOffX(2); } }; // end nameless namespace

@@ -178,7 +178,7 @@ if ((lookup_entry = lookup_map.find(name)) != lookup_map.end() &&

(cache_entry = font_cache.find(lookup_entry->second)) != font_cache.end()) { m_fontstr = cache_entry->first; m_fontimp = cache_entry->second; - resetEffects(this); + resetEffects(*this); return true; }

@@ -197,7 +197,7 @@ if ((cache_entry = font_cache.find(*name_it)) != font_cache.end()) {

m_fontstr = cache_entry->first; m_fontimp = cache_entry->second; lookup_map[name] = m_fontstr; - resetEffects(this); + resetEffects(*this); return true; }

@@ -222,7 +222,7 @@ lookup_map[name] = (*name_it);

m_fontimp = tmp_font; font_cache[(*name_it)] = tmp_font; m_fontstr = name; - resetEffects(this); + resetEffects(*this); return true; }