comparison src/gtkdialogs.c @ 10153:0b43f6fef9b5

[gaim-migrate @ 11231] Add some notes to status.c committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 04 Nov 2004 03:39:30 +0000
parents a6c3b931214f
children cf45c2a6a7cf
comparison
equal deleted inserted replaced
10152:3cec08c6179c 10153:0b43f6fef9b5
213 gtk_container_add(GTK_CONTAINER(sw), text); 213 gtk_container_add(GTK_CONTAINER(sw), text);
214 gaim_setup_imhtml(text); 214 gaim_setup_imhtml(text);
215 215
216 str = g_string_sized_new(4096); 216 str = g_string_sized_new(4096);
217 217
218 g_string_append(str, 218 g_string_append(str,
219 _("Gaim is a modular messaging client capable of using " 219 _("Gaim is a modular messaging client capable of using "
220 "AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, " 220 "AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, "
221 "Novell GroupWise, Napster, Zephyr, and Gadu-Gadu " 221 "Novell GroupWise, Napster, Zephyr, and Gadu-Gadu "
222 "all at once. It is written using " 222 "all at once. It is written using "
223 "Gtk+ and is licensed under the GPL.<BR><BR>")); 223 "Gtk+ and is licensed under the GPL.<BR><BR>"));
317 g_string_free(str, TRUE); 317 g_string_free(str, TRUE);
318 318
319 gtk_adjustment_set_value(gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(sw)), 0); 319 gtk_adjustment_set_value(gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(sw)), 0);
320 gtk_text_buffer_get_start_iter(gtk_text_view_get_buffer(GTK_TEXT_VIEW(text)), &iter); 320 gtk_text_buffer_get_start_iter(gtk_text_view_get_buffer(GTK_TEXT_VIEW(text)), &iter);
321 gtk_text_buffer_place_cursor(gtk_text_view_get_buffer(GTK_TEXT_VIEW(text)), &iter); 321 gtk_text_buffer_place_cursor(gtk_text_view_get_buffer(GTK_TEXT_VIEW(text)), &iter);
322 322
323 /* Close Button */ 323 /* Close Button */
324 bbox = gtk_hbutton_box_new(); 324 bbox = gtk_hbutton_box_new();
325 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END); 325 gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_END);
326 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0); 326 gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0);
327 327