summaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
authorGravatar Alan Fitton <alan@eth0.org.uk>2012-06-11 08:11:44 +0100
committerGravatar Alan Fitton <alan@eth0.org.uk>2012-06-11 08:11:44 +0100
commit05e8a8ab6ee73fa432268e5c2b408e40dea69550 (patch)
treefce4472269a38f5abfa02a84a8f69d9e83255d20 /src/util.c
parentc36c8cb77ea74329a0d57c1e7ed67ea72f69ec1f (diff)
fix typo breaking the gtk2 build (homogeneous in util.c)
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.c b/src/util.c
index 93806e6..fc594d7 100644
--- a/src/util.c
+++ b/src/util.c
@@ -591,7 +591,7 @@ GtkWidget *trg_hbox_new(gboolean homogeneous, gint spacing)
box = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, spacing);
gtk_box_set_homogeneous(GTK_BOX(box), homogeneous);
#else
- box = gtk_hbox_new(homogenous, spacing);
+ box = gtk_hbox_new(homogeneous, spacing);
#endif
return box;
}
@@ -603,7 +603,7 @@ GtkWidget *trg_vbox_new(gboolean homogeneous, gint spacing)
box = gtk_box_new(GTK_ORIENTATION_VERTICAL, spacing);
gtk_box_set_homogeneous(GTK_BOX(box), homogeneous);
#else
- box = gtk_vbox_new(homogenous, spacing);
+ box = gtk_vbox_new(homogeneous, spacing);
#endif
return box;
}