~3v1n0/unity/bfb-quicklist-does-not-close-dash

« back to all changes in this revision

Viewing changes to services/panel-main.c

  • Committer: Rodrigo Moya
  • Date: 2011-01-27 17:54:28 UTC
  • mto: This revision was merged to the branch mainline in revision 812.
  • Revision ID: rodrigo.moya@canonical.com-20110127175428-pjkd4s3pcbcay1kw
Add basic Util/Root ATK objects for the panel

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include <gio/gio.h>
21
21
#include <gtk/gtk.h>
22
22
 
 
23
#include "panel-a11y.h"
23
24
#include "panel-service.h"
24
25
 
25
26
static GDBusNodeInfo *introspection_data = NULL;
299
300
  guint         owner_id;
300
301
 
301
302
  g_unsetenv("UBUNTU_MENUPROXY");
 
303
  g_setenv ("NO_AT_BRIDGE", "1", TRUE); /* Needed for A11Y */
302
304
 
303
305
  gtk_init (&argc, &argv);
304
306
        gtk_icon_theme_append_search_path (gtk_icon_theme_get_default(),
305
307
                                           INDICATORICONDIR);
306
308
 
 
309
  panel_a11y_init ();
 
310
 
307
311
  introspection_data = g_dbus_node_info_new_for_xml (introspection_xml, NULL);
308
312
  g_assert (introspection_data != NULL);
309
313