all repos — tint2 @ 1bb885f840db73f43c766f1d84f2cea8aaf2f97b

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

*fix* Check wmhints for NULL


git-svn-id: http://tint2.googlecode.com/svn/trunk@179 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
Andreas.Fink85 Andreas.Fink85@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

1bb885f840db73f43c766f1d84f2cea8aaf2f97b

parent

ed9278e87b171e52438df1e25f9b2f0098cf4b98

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

jump to
M src/tint.csrc/tint.c

@@ -583,7 +583,7 @@ }

} else if (at == server.atom.WM_HINTS) { XWMHints* wmhints = XGetWMHints(server.dsp, win); - if (wmhints->flags & XUrgencyHint) { + if (wmhints && wmhints->flags & XUrgencyHint) { task_urgent = tsk; tick_urgent = 0; time_precision = 1;
M src/tooltip/tooltip.csrc/tooltip/tooltip.c

@@ -1,6 +1,6 @@

/************************************************************************** * -* Copyright (C) 2009 Andreas.Fink85 () +* Copyright (C) 2009 Andreas.Fink (Andreas.Fink85@gmail.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version 2
M src/tooltip/tooltip.hsrc/tooltip/tooltip.h

@@ -1,3 +1,20 @@

+/************************************************************************** +* +* Copyright (C) 2009 Andreas.Fink (Andreas.Fink85@gmail.com) +* +* This program is free software; you can redistribute it and/or +* modify it under the terms of the GNU General Public License version 2 +* as published by the Free Software Foundation. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* You should have received a copy of the GNU General Public License +* along with this program; if not, write to the Free Software +* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +**************************************************************************/ + #ifndef TOOLTIP_H #define TOOLTIP_H