head 1.4; access; symbols pkgsrc-2013Q2:1.4.0.34 pkgsrc-2013Q2-base:1.4 pkgsrc-2012Q4:1.4.0.32 pkgsrc-2012Q4-base:1.4 pkgsrc-2011Q4:1.4.0.30 pkgsrc-2011Q4-base:1.4 pkgsrc-2011Q2:1.4.0.28 pkgsrc-2011Q2-base:1.4 pkgsrc-2009Q4:1.4.0.26 pkgsrc-2009Q4-base:1.4 pkgsrc-2008Q4:1.4.0.24 pkgsrc-2008Q4-base:1.4 pkgsrc-2008Q3:1.4.0.22 pkgsrc-2008Q3-base:1.4 cube-native-xorg:1.4.0.20 cube-native-xorg-base:1.4 pkgsrc-2008Q2:1.4.0.18 pkgsrc-2008Q2-base:1.4 pkgsrc-2008Q1:1.4.0.16 pkgsrc-2008Q1-base:1.4 pkgsrc-2007Q4:1.4.0.14 pkgsrc-2007Q4-base:1.4 pkgsrc-2007Q3:1.4.0.12 pkgsrc-2007Q3-base:1.4 pkgsrc-2007Q2:1.4.0.10 pkgsrc-2007Q2-base:1.4 pkgsrc-2007Q1:1.4.0.8 pkgsrc-2007Q1-base:1.4 pkgsrc-2006Q4:1.4.0.6 pkgsrc-2006Q4-base:1.4 pkgsrc-2006Q3:1.4.0.4 pkgsrc-2006Q3-base:1.4 pkgsrc-2006Q2:1.4.0.2 pkgsrc-2006Q2-base:1.4 pkgsrc-2006Q1:1.3.0.12 pkgsrc-2006Q1-base:1.3 pkgsrc-2005Q4:1.3.0.10 pkgsrc-2005Q4-base:1.3 pkgsrc-2005Q3:1.3.0.8 pkgsrc-2005Q3-base:1.3 pkgsrc-2005Q2:1.3.0.6 pkgsrc-2005Q2-base:1.3 pkgsrc-2005Q1:1.3.0.4 pkgsrc-2005Q1-base:1.3 pkgsrc-2004Q4:1.3.0.2 pkgsrc-2004Q4-base:1.3; locks; strict; comment @# @; 1.4 date 2006.03.30.21.30.57; author jmmv; state dead; branches; next 1.3; 1.3 date 2004.11.12.22.10.16; author kristerw; state Exp; branches; next 1.2; 1.2 date 2004.11.05.14.11.41; author jmmv; state dead; branches; next 1.1; 1.1 date 2004.11.02.22.51.33; author jmmv; state Exp; branches; next ; desc @@ 1.4 log @Update to 1.0.7: Enhanced EWMH behavior - GOK registers itself as a pager now. Works better with Firefox toolbars. Works better with OpenOffice configuration dialogs and menus. Bugfixes for: #321908, #323975, #160848, #322062, #308417, #304524, OpenOffice Issuezilla #48639. New languages: 'ru' (Russian - Nickolay V. Shmyrev) 'fa' (Persian/Farsi - Roozbeh Pournader) 'gl' (Galician - Ignacio Casal Quinteiro) 'zh_HK' (Hong Kong Chinese - Chao-Hsiung Liao) @ text @$NetBSD: patch-aa,v 1.3 2004/11/12 22:10:16 kristerw Exp $ --- gok/gok-keyboard.c.orig Fri Nov 12 22:40:44 2004 +++ gok/gok-keyboard.c Fri Nov 12 22:42:15 2004 @@@@ -2518,9 +2518,10 @@@@ } else if ((pKeyboard->search_type == GOK_SPY_SEARCH_ACTIONABLE) && !did_actionkeys) { + AccessibleAction *action; gint action_count, i; did_actionkeys = TRUE; - AccessibleAction *action = + action = Accessible_getAction (pNodeAccessible->paccessible); if (!action) break; @ 1.3 log @Fix a C99-ism to make this pkg build with gcc 2.95. @ text @d1 1 a1 1 $NetBSD$ @ 1.2 log @Update to 0.11.15: What's new in GOK 0.11.15 ? * Bug fixes including: 155556, 157138, 157221, 154961, 155805, 156802 154918, 156802. * Mostly fixes and improvements to the dynamic accessibility keyboards. What's new in GOK 0.11.14 ? * Bug fixes including: 155182 (double actions), 154499, 154604, #156153, #156479, 155344, 155473, 155476, 155512. * LoginHelper's setSafe implementation now prevents word completion, as it should. * Distinguish between HTML content and browser controls. * Hush compiler warnings (bug 154915). @ text @d1 1 a1 1 $NetBSD: patch-aa,v 1.1 2004/11/02 22:51:33 jmmv Exp $ d3 14 a16 24 --- gok/main.c.orig 2004-10-13 15:36:18.000000000 +0200 +++ gok/main.c @@@@ -608,8 +608,8 @@@@ gok_main_open(gint argc, gchar *argv[]) fprintf (stderr, "\nGOK Actions:\n"); if (error == NULL) { - list = g_slist_sort (list, (GCompareFunc)comparebasenames); - GSList* listhead = list; + GSList* listhead; + listhead = list = g_slist_sort (list, (GCompareFunc)comparebasenames); while (list) { fprintf(stderr,"%s\n",g_path_get_basename(list->data)); g_free(list->data); @@@@ -636,8 +636,8 @@@@ gok_main_open(gint argc, gchar *argv[]) fprintf (stderr, "\nGOK Access Methods:\n"); if (error == NULL) { gchar* base; - list = g_slist_sort (list, (GCompareFunc)comparebasenames); - GSList* listhead = list; + GSList* listhead; + listhead = list = g_slist_sort (list, (GCompareFunc)comparebasenames); while (list) { base = g_path_get_basename(list->data); fprintf(stderr,"%s\n",base); @ 1.1 log @Remove some useless C99isms to fix the build under NetBSD 1.6.2. Should fix bug PR/27188 and problem shown in kristerw@@'s bulk build. @ text @d1 1 a1 1 $NetBSD$ @