goffice r2266 - in trunk/goffice: graph gtk
- From: mortenw svn gnome org
- To: svn-commits-list gnome org
- Subject: goffice r2266 - in trunk/goffice: graph gtk
- Date: Sat, 8 Nov 2008 02:11:32 +0000 (UTC)
Author: mortenw
Date: Sat Nov 8 02:11:32 2008
New Revision: 2266
URL: http://svn.gnome.org/viewvc/goffice?rev=2266&view=rev
Log:
Replace use of
gtk_box_pack_start_defaults
with gtk_box_pack_start (box, child, TRUE, TRUE, 0);
Modified:
trunk/goffice/graph/gog-style.c
trunk/goffice/gtk/go-font-sel.c
Modified: trunk/goffice/graph/gog-style.c
==============================================================================
--- trunk/goffice/graph/gog-style.c (original)
+++ trunk/goffice/graph/gog-style.c Sat Nov 8 02:11:32 2008
@@ -929,7 +929,7 @@
g_signal_connect (G_OBJECT (w), "rotation-changed",
G_CALLBACK (cb_angle_changed), state);
box = gtk_vbox_new (FALSE, 6);
- gtk_box_pack_start_defaults (GTK_BOX (box), w);
+ gtk_box_pack_start (GTK_BOX (box), w, TRUE, TRUE, 0);
gtk_container_set_border_width (GTK_CONTAINER (box), 12);
gog_editor_add_page (editor, box, _("Text"));
}
Modified: trunk/goffice/gtk/go-font-sel.c
==============================================================================
--- trunk/goffice/gtk/go-font-sel.c (original)
+++ trunk/goffice/gtk/go-font-sel.c Sat Nov 8 02:11:32 2008
@@ -357,8 +357,9 @@
gfs->modifications = pango_attr_list_new ();
- gtk_box_pack_start_defaults (GTK_BOX (gfs),
- glade_xml_get_widget (gfs->gui, "toplevel-table"));
+ gtk_box_pack_start (GTK_BOX (gfs),
+ glade_xml_get_widget (gfs->gui, "toplevel-table"),
+ TRUE, TRUE, 0);
gfs->font_name_entry = glade_xml_get_widget (gfs->gui, "font-name-entry");
gfs->font_style_entry = glade_xml_get_widget (gfs->gui, "font-style-entry");
gfs->font_size_entry = glade_xml_get_widget (gfs->gui, "font-size-entry");
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]