all repos — fluxbox @ 984fb5bef200cd7db7a9a13354f50b55919978af

custom fork of the fluxbox windowmanager

cosmetics
Mathias Gumz akira at fluxbox dot org
commit

984fb5bef200cd7db7a9a13354f50b55919978af

parent

ed53f3c623e7c3ae35672b33ae3b52759dc1a6ed

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

jump to
M src/Screen.ccsrc/Screen.cc

@@ -1030,10 +1030,10 @@ // make sure we have a unique list

if (find(iconList().begin(), iconList().end(), w) != iconList().end()) return; - m_icon_list.push_back(w); + iconList().push_back(w); // notify listeners - m_iconlist_sig.emit(*this); + iconListSig().emit(*this); }

@@ -1048,7 +1048,7 @@ // no need to send iconlist signal if we didn't

// change the iconlist if (erase_it != m_icon_list.end()) { iconList().erase(erase_it); - m_iconlist_sig.emit(*this); + iconListSig().emit(*this); } }