all repos — fluxbox @ 3e615b15deeaa453b00f5c734eef04a0e4e94361

custom fork of the fluxbox windowmanager

fixed mode NONE bug
fluxgen fluxgen
commit

3e615b15deeaa453b00f5c734eef04a0e4e94361

parent

4ca7cc7b94379faa73bc2cbb70794fa2a86d248f

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

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

@@ -20,7 +20,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: IconbarTool.cc,v 1.11 2003/09/10 11:17:53 fluxgen Exp $ +// $Id: IconbarTool.cc,v 1.12 2003/09/15 20:19:36 fluxgen Exp $ #include "IconbarTool.hh"

@@ -194,7 +194,6 @@ screen.iconListSig().attach(this);

screen.currentWorkspaceSig().attach(this); update(0); - } IconbarTool::~IconbarTool() {

@@ -287,7 +286,7 @@ if (m_screen.isShuttingdown())

return; if (mode() == NONE) { - if (typeid(*subj) == typeid(FbTk::Theme)) + if (subj != 0 && typeid(*subj) == typeid(IconbarTheme)) renderTheme(); return;