comparison src/server.c @ 5411:2c4188300aba

[gaim-migrate @ 5787] This fixes an i18n thing, I think. I changed some stuff in oscar.c to use _() instead of calling gettext directly. That's ok, right? I like the macro better. I also fixed a compile warning or two. If that function declaration isn't supposed to be there, feel free to move it, or remove it, or lemme know and I'll do it. Viva 0.63! committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 17 May 2003 05:41:18 +0000
parents e938119382cf
children ad445074d239
comparison
equal deleted inserted replaced
5410:326136c49036 5411:2c4188300aba
1401 char *url = g_strdup(u); 1401 char *url = g_strdup(u);
1402 1402
1403 GAIM_DIALOG(window); 1403 GAIM_DIALOG(window);
1404 gtk_window_set_role(GTK_WINDOW(window), "popup"); 1404 gtk_window_set_role(GTK_WINDOW(window), "popup");
1405 gtk_window_set_resizable(GTK_WINDOW(window), FALSE); 1405 gtk_window_set_resizable(GTK_WINDOW(window), FALSE);
1406 gtk_window_set_title(GTK_WINDOW(window), "Gaim - Popup"); 1406 gtk_window_set_title(GTK_WINDOW(window), _("Gaim - Popup"));
1407 gtk_container_set_border_width(GTK_CONTAINER(window), 5); 1407 gtk_container_set_border_width(GTK_CONTAINER(window), 5);
1408 g_signal_connect(G_OBJECT(window), "destroy", 1408 g_signal_connect(G_OBJECT(window), "destroy",
1409 G_CALLBACK(des_popup), window); 1409 G_CALLBACK(des_popup), window);
1410 g_object_set_data(G_OBJECT(window), "url", url); 1410 g_object_set_data(G_OBJECT(window), "url", url);
1411 gtk_widget_realize(window); 1411 gtk_widget_realize(window);