diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-07 12:45:26 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-07 12:45:26 +0800 |
commit | daf38bc8b0643edaf1629f7767ddb3051821d000 (patch) | |
tree | 8117feb14ddfc3301f9f7c4f240e68c99d82e421 /addressbook/gui/widgets/e-minicard-view.c | |
parent | f1bf0afda992d969be86bfe29c464a8c435dcebf (diff) | |
download | gsoc2013-evolution-daf38bc8b0643edaf1629f7767ddb3051821d000.tar.gz gsoc2013-evolution-daf38bc8b0643edaf1629f7767ddb3051821d000.tar.zst gsoc2013-evolution-daf38bc8b0643edaf1629f7767ddb3051821d000.zip |
gobjectify this.
2002-11-06 Chris Toshok <toshok@ximian.com>
* gui/widgets/gal-view-minicard.[ch]: gobjectify this.
* gui/widgets/e-minicard.[ch]: gobjectify this.
(e_minicard_class_init): change the
min/max values of the width/height paramspecs so that they can
actually be set to something other than 0.0.
* gui/widgets/e-minicard-widget.[ch]: gobjectify this.
* gui/widgets/e-minicard-view.[ch]: gobjectify this.
(set_empty_message): don't need e_utf8_from_locale_string anymore.
* gui/widgets/e-minicard-view-widget.[ch]: gobjectify this.
* gui/widgets/e-minicard-label.[ch]: gobjectify this.
* gui/widgets/e-addressbook-view.[ch]: gobjectify this.
* gui/widgets/e-addressbook-table-adapter.[ch]: gobjectify this.
* gui/widgets/e-addressbook-reflow-adapter.[ch]: gobjectify this.
* gui/widgets/e-addressbook-model.[ch]: gobjectify this.
* gui/widgets/e-minicard-control.c (e_minicard_control_factory):
fix bonobo_persist_stream_new api change.
* gui/contact-list-editor/e-contact-list-model.c
(e_contact_list_model_add_destination): get rid of the
gtk_object_sink here.
* gui/component/ldap-config.glade: glade-2 version of this file.
* gui/component/e-address-popup.c (e_address_popup_refresh_names):
don't need e_utf8_to_gtk_string anymore.
* gui/component/addressbook.c (make_suboptions): don't need
e_utf8_to_locale_string anymore.
* gui/component/addressbook-config.c
(addressbook_dialog_get_source): get rid of the e_utf8 gtk_entry
functions.
(addressbook_source_dialog_set_source): same.
(general_tab_check): same.
(port_changed_func): same.
(connecting_tab_check): same.
(query_for_supported_bases): same.
(display_name_check): same.
(display_name_page_prepare): same.
(edit_source_clicked): same.
(addressbook_config_create_new_source): same.
svn path=/trunk/; revision=18626
Diffstat (limited to 'addressbook/gui/widgets/e-minicard-view.c')
-rw-r--r-- | addressbook/gui/widgets/e-minicard-view.c | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/addressbook/gui/widgets/e-minicard-view.c b/addressbook/gui/widgets/e-minicard-view.c index 28f7cfe497..afb08ef02f 100644 --- a/addressbook/gui/widgets/e-minicard-view.c +++ b/addressbook/gui/widgets/e-minicard-view.c @@ -138,16 +138,14 @@ set_empty_message (EMinicardView *view) } if (editable) - empty_message = e_utf8_from_locale_string(_("\n\nThere are no items to show in this view.\n\n" - "Double-click here to create a new Contact.")); + empty_message = _("\n\nThere are no items to show in this view.\n\n" + "Double-click here to create a new Contact."); else - empty_message = e_utf8_from_locale_string(_("\n\nThere are no items to show in this view.")); + empty_message = _("\n\nThere are no items to show in this view."); g_object_set (view, "empty_message", empty_message, NULL); - - g_free (empty_message); } static void @@ -477,24 +475,25 @@ e_minicard_view_init (EMinicardView *view) set_empty_message (view); } -GtkType +GType e_minicard_view_get_type (void) { - static GtkType reflow_type = 0; + static GType reflow_type = 0; if (!reflow_type) { - static const GtkTypeInfo reflow_info = { - "EMinicardView", - sizeof (EMinicardView), + static const GTypeInfo reflow_info = { sizeof (EMinicardViewClass), - (GtkClassInitFunc) e_minicard_view_class_init, - (GtkObjectInitFunc) e_minicard_view_init, - /* reserved_1 */ NULL, - /* reserved_2 */ NULL, - (GtkClassInitFunc) NULL, + NULL, /* base_init */ + NULL, /* base_finalize */ + (GClassInitFunc) e_minicard_view_class_init, + NULL, /* class_finalize */ + NULL, /* class_data */ + sizeof (EMinicardView), + 0, /* n_preallocs */ + (GInstanceInitFunc) e_minicard_view_init, }; - reflow_type = gtk_type_unique (PARENT_TYPE, &reflow_info); + reflow_type = g_type_register_static (PARENT_TYPE, "EMinicardView", &reflow_info, 0); } return reflow_type; |