~ps-jenkins/indicator-applet/latestsnapshot-12.10.2+13.10.20130924.2-0ubuntu1

« back to all changes in this revision

Viewing changes to src/applet-main.c

  • Committer: Tarmac
  • Author(s): Charles Kerr
  • Date: 2012-09-13 20:30:00 UTC
  • mfrom: (402.2.2 lp-1049838)
  • Revision ID: tarmac-20120913203000-eu0mx3nsk0tosssl
Add position hint for Sync Indicator. Fixes: https://bugs.launchpad.net/bugs/1049838. Approved by jenkins, Lars Uebernickel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#include "libindicator/indicator-object.h"
31
31
#include "tomboykeybinder.h"
32
32
 
33
 
static gchar * indicator_order[][2] = {
34
 
  {"libappmenu.so", NULL},
35
 
  {"libapplication.so", NULL},
36
 
  {"libapplication.so", "gst-keyboard-xkb"},
37
 
  {"libmessaging.so", NULL},
38
 
  {"libpower.so", NULL},
39
 
  {"libapplication.so", "bluetooth-manager"},
40
 
  {"libnetwork.so", NULL},
41
 
  {"libnetworkmenu.so", NULL},
42
 
  {"libapplication.so", "nm-applet"},
43
 
  {"libsoundmenu.so", NULL},
44
 
  {"libdatetime.so", NULL},
45
 
  {"libsession.so", NULL},
 
33
static const gchar * indicator_order[][2] = {
 
34
  {"libappmenu.so", NULL},                    /* indicator-appmenu" */
 
35
  {"libapplication.so", NULL},                /* indicator-application" */
 
36
  {"libprintersmenu.so", NULL},               /* indicator-printers */
 
37
  {"libsyncindicator.so", NULL},              /* indicator-sync */
 
38
  {"libapplication.so", "gsd-keyboard-xkb"},  /* keyboard layout selector */
 
39
  {"libmessaging.so", NULL},                  /* indicator-messages */
 
40
  {"libpower.so", NULL},                      /* indicator-power */
 
41
  {"libapplication.so", "bluetooth-manager"}, /* bluetooth manager */
 
42
  {"libnetwork.so", NULL},                    /* indicator-network */
 
43
  {"libnetworkmenu.so", NULL},                /* indicator-network */
 
44
  {"libapplication.so", "nm-applet"},         /* network manager */
 
45
  {"libsoundmenu.so", NULL},                  /* indicator-sound */
 
46
  {"libdatetime.so", NULL},                   /* indicator-datetime */
 
47
  {"libsession.so", NULL},                    /* indicator-session */
46
48
  {NULL, NULL}
47
49
};
48
50