comparison src/browser.c @ 4168:ebfb80bbe1ed

[gaim-migrate @ 4397] (00:16:51) faceprint: apply my g-signal patch too! </whine> (00:17:02) ChipX86: the what? (00:17:20) faceprint: sorry (00:17:23) faceprint: g-timeout, rather (00:17:28) ChipX86: ah good (00:17:33) faceprint: http://faceprint.com/code/gaim/g-timeout.20030101.1301.diff (00:17:33) ChipX86: yes, APPLY THAT (00:17:38) ChipX86: I need that (00:17:40) LSchiere: one at a time (00:17:51) faceprint: ChipX86: you need that? (00:17:56) ChipX86: for the conversation rewrite (00:17:59) faceprint: ahh (00:18:08) faceprint: it also fixes a memleak for msn users committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Thu, 02 Jan 2003 05:20:55 +0000
parents 9682c0e022c6
children 56e07e5ccd9a
comparison
equal deleted inserted replaced
4167:7002b6f16bdf 4168:ebfb80bbe1ed
484 484
485 return result; 485 return result;
486 } 486 }
487 487
488 488
489 gint check_netscape(char *msg) 489 gboolean check_netscape(gpointer data)
490 { 490 {
491 char *msg = data;
491 int status; 492 int status;
492 GdkWindow *window; 493 GdkWindow *window;
493 494
494 mozilla_remote_init_atoms(); 495 mozilla_remote_init_atoms();
495 window = mozilla_remote_find_window(); 496 window = mozilla_remote_find_window();
559 printf("Hello%d\n", getppid()); 560 printf("Hello%d\n", getppid());
560 561
561 _exit(0); 562 _exit(0);
562 } else { 563 } else {
563 char *tmp = g_strdup(command); 564 char *tmp = g_strdup(command);
564 gtk_timeout_add(200, (GtkFunction)check_netscape, tmp); 565 g_timeout_add(200, check_netscape, tmp);
565 } 566 }
566 } 567 }
567 568
568 } 569 }
569 570