diff options
author | Ted Gould <ted@gould.cx> | 2011-07-07 00:28:26 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-07-07 00:28:26 -0500 |
commit | c1034173faf54120c693c984123f343968621359 (patch) | |
tree | d34d08d7e2602b8177f5d043b22418b32f14de1e /tools | |
parent | 50607d3ff1fbbfec73be70d4220e9f826237b846 (diff) | |
parent | 9cca8d7de8e5d04886aae8e7f2c118c4ca3c65e8 (diff) | |
download | libayatana-indicator-c1034173faf54120c693c984123f343968621359.tar.gz libayatana-indicator-c1034173faf54120c693c984123f343968621359.tar.bz2 libayatana-indicator-c1034173faf54120c693c984123f343968621359.zip |
Import upstream version 0.3.90
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.in | 7 | ||||
-rw-r--r-- | tools/indicator-loader.c | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in index 10f3bc2..e01a0d4 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -40,7 +40,10 @@ host_triplet = @host@ subdir = tools DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d @@ -72,7 +75,7 @@ indicator_loader3_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(indicator_loader3_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ 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); |