*fix* stupid mistake corrected
git-svn-id: http://tint2.googlecode.com/svn/trunk@334 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
@@ -33,11 +33,15 @@
|
|||||||
#include "panel.h"
|
#include "panel.h"
|
||||||
|
|
||||||
|
|
||||||
|
/* win_to_task_table holds for every Window an array of tasks. Usually the array contains only one
|
||||||
|
element. However for omnipresent windows (windows which are visible in every taskbar) the array
|
||||||
|
contains to every Task* on each panel a pointer (i.e. GPtrArray.len == server.nb_desktop)
|
||||||
|
*/
|
||||||
GHashTable* win_to_task_table = 0;
|
GHashTable* win_to_task_table = 0;
|
||||||
|
|
||||||
guint win_hash(gconstpointer key) { return (guint)*((Window*)key); }
|
guint win_hash(gconstpointer key) { return (guint)*((Window*)key); }
|
||||||
gboolean win_compare(gconstpointer a, gconstpointer b) { return (*((Window*)a) == *((Window*)b)); }
|
gboolean win_compare(gconstpointer a, gconstpointer b) { return (*((Window*)a) == *((Window*)b)); }
|
||||||
void free_ptr_array(gpointer* data) { g_ptr_array_free(data, 1); }
|
void free_ptr_array(gpointer data) { g_ptr_array_free(data, 1); }
|
||||||
|
|
||||||
void init_taskbar()
|
void init_taskbar()
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user