comparison plugins/spellchk.c @ 1940:8de58cd2892f

[gaim-migrate @ 1950] don't mind this. it just makes my patch for GTK2 smaller. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 01 Jun 2001 22:45:45 +0000
parents 08ac51210d09
children 94e81315be2a
comparison
equal deleted inserted replaced
1939:0ec62ca82a8a 1940:8de58cd2892f
319 load_conf(); 319 load_conf();
320 } 320 }
321 321
322 static void bad_changed() { 322 static void bad_changed() {
323 int row; 323 int row;
324 char *m; 324 const char *m;
325 325
326 if (GTK_CLIST(list)->selection) 326 if (GTK_CLIST(list)->selection)
327 row = (int) GTK_CLIST (list)->selection->data; 327 row = (int) GTK_CLIST (list)->selection->data;
328 else 328 else
329 row = -1; 329 row = -1;
333 } 333 }
334 } 334 }
335 335
336 static void good_changed() { 336 static void good_changed() {
337 int row; 337 int row;
338 char *m; 338 const char *m;
339 339
340 if (GTK_CLIST(list)->selection) 340 if (GTK_CLIST(list)->selection)
341 row = (int) GTK_CLIST (list)->selection->data; 341 row = (int) GTK_CLIST (list)->selection->data;
342 else 342 else
343 row = -1; 343 row = -1;