Fix modest_tny_msg_header_get_all_recipients_list (in case from is empty)
[modest] / src / hildon2 / modest-secureauth-picker.c
index 0e3cb16..954a17c 100644 (file)
@@ -132,12 +132,15 @@ modest_secureauth_picker_new (HildonSizeType size,
                                             renderer, "text", MODEL_COL_NAME, NULL);
 
        hildon_touch_selector_set_model (HILDON_TOUCH_SELECTOR (selector), 0, GTK_TREE_MODEL (priv->model));
-       hildon_touch_selector_set_print_func (HILDON_TOUCH_SELECTOR (selector), touch_selector_print_func);
+       hildon_touch_selector_set_print_func (HILDON_TOUCH_SELECTOR (selector), (HildonTouchSelectorPrintFunc) touch_selector_print_func);
 
        hildon_picker_button_set_selector (HILDON_PICKER_BUTTON (self), HILDON_TOUCH_SELECTOR (selector));
 
        modest_secureauth_picker_fill (self);
 
+       /* For theming purpouses. Widget name must end in Button-finger */
+       gtk_widget_set_name ((GtkWidget *) self, "ModestSecureauthPickerButton-finger");
+
        return self;
 }