diff options
Diffstat (limited to 'composer/e-composer-header.c')
-rw-r--r-- | composer/e-composer-header.c | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/composer/e-composer-header.c b/composer/e-composer-header.c index 334464eddd..fd71bab4d9 100644 --- a/composer/e-composer-header.c +++ b/composer/e-composer-header.c @@ -21,7 +21,7 @@ */ #include "e-composer-header.h" -#include <glib/gi18n.h> + #define E_COMPOSER_HEADER_GET_PRIVATE(obj) \ (G_TYPE_INSTANCE_GET_PRIVATE \ ((obj), E_TYPE_COMPOSER_HEADER, EComposerHeaderPrivate)) @@ -111,19 +111,9 @@ composer_header_constructor (GType type, box = gtk_hbox_new (FALSE, 0); tmp = gtk_image_new_from_stock("gtk-add", GTK_ICON_SIZE_BUTTON); gtk_box_pack_start((GtkBox *)box, tmp, FALSE, FALSE, 3); - g_object_set_data ((GObject *)header->priv->action_label, "add", tmp); - tmp = gtk_image_new_from_stock("gtk-remove", GTK_ICON_SIZE_BUTTON); - gtk_box_pack_start((GtkBox *)box, tmp, FALSE, FALSE, 3); - g_object_set_data ((GObject *)header->priv->action_label, "remove", tmp); - gtk_widget_hide (tmp); - tmp = header->priv->action_label; - str = g_strdup_printf ("<span>%s %s</span>", _("Show"), header->priv->addaction_text); - g_object_set_data ((GObject *)tmp, "show", str); + tmp = gtk_label_new (NULL); + str = g_strdup_printf ("<span foreground='blue' underline='single' underline_color='blue' >%s</span>", header->priv->addaction_text); gtk_label_set_markup((GtkLabel *)tmp, str); - str = g_strdup_printf ("<span>%s %s</span>", _("Hide"), header->priv->addaction_text); - g_object_set_data ((GObject *)tmp, "hide", str); - - header->priv->action_label = tmp; gtk_box_pack_start((GtkBox *)box, tmp, FALSE, FALSE, 3); gtk_container_add((GtkContainer *)header->action_widget, box); gtk_widget_show_all(header->action_widget); @@ -340,7 +330,8 @@ composer_header_class_init (EComposerHeaderClass *class) "changed", G_TYPE_FROM_CLASS (class), G_SIGNAL_RUN_LAST, - 0, NULL, NULL, + G_STRUCT_OFFSET (EComposerHeaderClass, changed), + NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); @@ -348,7 +339,8 @@ composer_header_class_init (EComposerHeaderClass *class) "clicked", G_TYPE_FROM_CLASS (class), G_SIGNAL_RUN_LAST, - 0, NULL, NULL, + G_STRUCT_OFFSET (EComposerHeaderClass, clicked), + NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } |