diff options
author | Ted Gould <ted@gould.cx> | 2009-12-22 14:48:05 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2009-12-22 14:48:05 -0600 |
commit | ed2a9173b18a9c85111f4d2fa879c69389168323 (patch) | |
tree | 49e1b519198ff386dc4dae646bcac8c059743310 /src/indicator-messages.c | |
parent | 2b40fcfa82576f76ba719d0a9321db34c5368cc7 (diff) | |
parent | 2e661e35575a77338acb08e6d3707c978d6e1b08 (diff) | |
download | ayatana-indicator-messages-ed2a9173b18a9c85111f4d2fa879c69389168323.tar.gz ayatana-indicator-messages-ed2a9173b18a9c85111f4d2fa879c69389168323.tar.bz2 ayatana-indicator-messages-ed2a9173b18a9c85111f4d2fa879c69389168323.zip |
Updating to dbusmenu v0.2.0
Diffstat (limited to 'src/indicator-messages.c')
-rw-r--r-- | src/indicator-messages.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/indicator-messages.c b/src/indicator-messages.c index 54e67c9..acb2e68 100644 --- a/src/indicator-messages.c +++ b/src/indicator-messages.c @@ -218,14 +218,14 @@ struct _indicator_item_t { /* Whenever we have a property change on a DbusmenuMenuitem we need to be responsive to that. */ static void -indicator_prop_change_cb (DbusmenuMenuitem * mi, gchar * prop, gchar * value, indicator_item_t * mi_data) +indicator_prop_change_cb (DbusmenuMenuitem * mi, gchar * prop, GValue * value, indicator_item_t * mi_data) { if (!g_strcmp0(prop, INDICATOR_MENUITEM_PROP_LABEL)) { /* Set the main label */ - gtk_label_set_text(GTK_LABEL(mi_data->label), value); + gtk_label_set_text(GTK_LABEL(mi_data->label), g_value_get_string(value)); } else if (!g_strcmp0(prop, INDICATOR_MENUITEM_PROP_RIGHT)) { /* Set the right label */ - gtk_label_set_text(GTK_LABEL(mi_data->right), value); + gtk_label_set_text(GTK_LABEL(mi_data->right), g_value_get_string(value)); } else if (!g_strcmp0(prop, INDICATOR_MENUITEM_PROP_ICON)) { /* We don't use the value here, which is probably less efficient, but it's easier to use the easy function. And since th value @@ -351,7 +351,7 @@ new_launcher_item (DbusmenuMenuitem * newitem, DbusmenuMenuitem * parent, Dbusme GtkWidget * app_label = gtk_label_new(dbusmenu_menuitem_property_get(newitem, LAUNCHER_MENUITEM_PROP_APP_NAME)); gtk_misc_set_alignment(GTK_MISC(app_label), 0.0, 0.5); GtkWidget * dsc_label = gtk_label_new(""); - gtk_misc_set_alignment(GTK_MISC(dsc_label), 0.05, 0.5); + gtk_misc_set_alignment(GTK_MISC(dsc_label), 0.0, 0.5); gtk_label_set_ellipsize(GTK_LABEL(dsc_label), PANGO_ELLIPSIZE_END); gtk_widget_set_size_request(dsc_label, 200, -1); gchar * markup = g_markup_printf_escaped("<span font-size=\"smaller\">%s</span>", dbusmenu_menuitem_property_get(newitem, LAUNCHER_MENUITEM_PROP_APP_DESC)); |