aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-07-06 16:33:09 -0500
committerTed Gould <ted@gould.cx>2011-07-06 16:33:09 -0500
commit6f2f14775574e792ca2209a97c20bc31af438928 (patch)
treee2cfedc4d38c8a3e295c0a878b0deb2664e6511d /tools
parentfb0fab8ec38d33d0b32ebefecddba9ddd86b603b (diff)
downloadlibayatana-indicator-6f2f14775574e792ca2209a97c20bc31af438928.tar.gz
libayatana-indicator-6f2f14775574e792ca2209a97c20bc31af438928.tar.bz2
libayatana-indicator-6f2f14775574e792ca2209a97c20bc31af438928.zip
Switch to using gtk_box_new()
Diffstat (limited to 'tools')
-rw-r--r--tools/indicator-loader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/indicator-loader.c b/tools/indicator-loader.c
index 03614aa..0cdf1ff 100644
--- a/tools/indicator-loader.c
+++ b/tools/indicator-loader.c
@@ -44,7 +44,7 @@ entry_added (IndicatorObject * io, IndicatorObjectEntry * entry, gpointer user_d
g_debug("Signal: Entry Added");
GtkWidget * menuitem = gtk_menu_item_new();
- GtkWidget * hbox = gtk_hbox_new(FALSE, 3);
+ GtkWidget * hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 3);
if (entry->image != NULL) {
gtk_box_pack_start(GTK_BOX(hbox), GTK_WIDGET(entry->image), FALSE, FALSE, 0);