comparison src/dialogs.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 57b2986b62c3
children ad445074d239
comparison
equal deleted inserted replaced
5410:326136c49036 5411:2c4188300aba
4273 4273
4274 static void do_rename_group(GtkObject *obj, int resp, GtkWidget *entry) 4274 static void do_rename_group(GtkObject *obj, int resp, GtkWidget *entry)
4275 { 4275 {
4276 const char *new_name; 4276 const char *new_name;
4277 struct group *g; 4277 struct group *g;
4278 struct group *orig;
4279 4278
4280 if (resp == GTK_RESPONSE_OK) { 4279 if (resp == GTK_RESPONSE_OK) {
4281 new_name = gtk_entry_get_text(GTK_ENTRY(entry)); 4280 new_name = gtk_entry_get_text(GTK_ENTRY(entry));
4282 g = g_object_get_data(G_OBJECT(entry), "group"); 4281 g = g_object_get_data(G_OBJECT(entry), "group");
4283 4282