all repos — fluxbox @ 4f55e1f00597efe2b8cb130eaf70f1d8c5b7c388

custom fork of the fluxbox windowmanager

destroy screens on shutdown
fluxgen fluxgen
commit

4f55e1f00597efe2b8cb130eaf70f1d8c5b7c388

parent

47a20c9ef2aa61c7bbef63d22362dd9a999d0f96

1 files changed, 5 insertions(+), 2 deletions(-)

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

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: fluxbox.cc,v 1.217 2004/01/09 11:37:01 fluxgen Exp $ +// $Id: fluxbox.cc,v 1.218 2004/01/10 02:58:50 fluxgen Exp $ #include "fluxbox.hh"

@@ -603,7 +603,10 @@ while (!m_atomhandler.empty()) {

delete m_atomhandler.back(); m_atomhandler.pop_back(); } - + while (!m_screen_list.empty()) { + delete m_screen_list.back(); + m_screen_list.pop_back(); + } clearMenuFilenames(); }