# HG changeset patch # User Elliott Sales de Andrade # Date 1252035943 0 # Node ID ba35d96b9440fc452082e3238a43b285c160df7f # Parent de93712181c156721ffeb7745baae553582b015a Wordwrap just a little bit. diff -r de93712181c1 -r ba35d96b9440 pidgin/gtkprefs.c --- a/pidgin/gtkprefs.c Fri Sep 04 03:41:31 2009 +0000 +++ b/pidgin/gtkprefs.c Fri Sep 04 03:45:43 2009 +0000 @@ -934,7 +934,11 @@ { GtkCellRenderer *cell_rend; GtkWidget *combo_box; - GtkTargetEntry te[3] = {{"text/plain", 0, 0},{"text/uri-list", 0, 1},{"STRING", 0, 2}}; + GtkTargetEntry te[3] = { + {"text/plain", 0, 0}, + {"text/uri-list", 0, 1}, + {"STRING", 0, 2} + }; g_return_val_if_fail(store != NULL && current_theme != NULL, NULL); @@ -1090,12 +1094,17 @@ GtkTreeSelection *sel; GtkTreeRowReference *rowref; GtkWidget *label; - GtkTargetEntry te[3] = {{"text/plain", 0, 0},{"text/uri-list", 0, 1},{"STRING", 0, 2}}; + GtkTargetEntry te[3] = { + {"text/plain", 0, 0}, + {"text/uri-list", 0, 1}, + {"STRING", 0, 2} + }; ret = gtk_vbox_new(FALSE, PIDGIN_HIG_CAT_SPACE); gtk_container_set_border_width (GTK_CONTAINER (ret), PIDGIN_HIG_BORDER); - label = gtk_label_new(_("Select a smiley theme that you would like to use from the list below. New themes can be installed by dragging and dropping them onto the theme list.")); + label = gtk_label_new(_("Select a smiley theme that you would like to use from the list below." + " New themes can be installed by dragging and dropping them onto the theme list.")); gtk_label_set_line_wrap(GTK_LABEL(label), TRUE); gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);