changeset 15211:7d682fc9098f

[gaim-migrate @ 18000] Clicking the first window on the taskbar didn't give it focus. Fix that. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Fri, 15 Dec 2006 00:40:56 +0000
parents ffec45ff82d0
children 49afc9ce69d2
files console/libgnt/gntbindable.c console/libgnt/gntwm.c
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/console/libgnt/gntbindable.c	Thu Dec 14 22:25:18 2006 +0000
+++ b/console/libgnt/gntbindable.c	Fri Dec 15 00:40:56 2006 +0000
@@ -107,10 +107,7 @@
 	
 	action = g_hash_table_lookup(klass->actions, name);
 	if (action && action->u.action) {
-		if (list)
-			return action->u.action(bindable, list);
-		else
-			return action->u.action_noparam(bindable);
+		return action->u.action(bindable, list);
 	}
 	return FALSE;
 }
--- a/console/libgnt/gntwm.c	Thu Dec 14 22:25:18 2006 +0000
+++ b/console/libgnt/gntwm.c	Fri Dec 15 00:40:56 2006 +0000
@@ -300,10 +300,13 @@
 	GList *l;
 	int n;
 
-	if (!wm->ordered || !list)
+	if (!wm->ordered)
 		return TRUE;
 
-	n = GPOINTER_TO_INT(list->data);
+	if (list)
+		n = GPOINTER_TO_INT(list->data);
+	else
+		n = 0;
 	
 	w = wm->ordered->data;