aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/gal-view-minicard.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-11-07 12:45:26 +0800
committerChris Toshok <toshok@src.gnome.org>2002-11-07 12:45:26 +0800
commitdaf38bc8b0643edaf1629f7767ddb3051821d000 (patch)
tree8117feb14ddfc3301f9f7c4f240e68c99d82e421 /addressbook/gui/widgets/gal-view-minicard.c
parentf1bf0afda992d969be86bfe29c464a8c435dcebf (diff)
downloadgsoc2013-evolution-daf38bc8b0643edaf1629f7767ddb3051821d000.tar
gsoc2013-evolution-daf38bc8b0643edaf1629f7767ddb3051821d000.tar.gz
gsoc2013-evolution-daf38bc8b0643edaf1629f7767ddb3051821d000.tar.bz2
gsoc2013-evolution-daf38bc8b0643edaf1629f7767ddb3051821d000.tar.lz
gsoc2013-evolution-daf38bc8b0643edaf1629f7767ddb3051821d000.tar.xz
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/gal-view-minicard.c')
-rw-r--r--addressbook/gui/widgets/gal-view-minicard.c33
1 files changed, 16 insertions, 17 deletions
diff --git a/addressbook/gui/widgets/gal-view-minicard.c b/addressbook/gui/widgets/gal-view-minicard.c
index aed71e86ac..44e4e9c86c 100644
--- a/addressbook/gui/widgets/gal-view-minicard.c
+++ b/addressbook/gui/widgets/gal-view-minicard.c
@@ -132,7 +132,7 @@ gal_view_minicard_init (GalViewMinicard *gvm)
GalView *
gal_view_minicard_new (const gchar *title)
{
- return gal_view_minicard_construct (gtk_type_new (gal_view_minicard_get_type ()), title);
+ return gal_view_minicard_construct (g_object_new (GAL_TYPE_VIEW_MINICARD, NULL), title);
}
/**
@@ -153,26 +153,25 @@ gal_view_minicard_construct (GalViewMinicard *view,
return GAL_VIEW(view);
}
-GtkType
+GType
gal_view_minicard_get_type (void)
{
- static guint type = 0;
-
- if (!type)
- {
- GtkTypeInfo info =
- {
- "GalViewMinicard",
- sizeof (GalViewMinicard),
+ static GType type = 0;
+
+ if (!type) {
+ static const GTypeInfo info = {
sizeof (GalViewMinicardClass),
- (GtkClassInitFunc) gal_view_minicard_class_init,
- (GtkObjectInitFunc) gal_view_minicard_init,
- /* reserved_1 */ NULL,
- /* reserved_2 */ NULL,
- (GtkClassInitFunc) NULL,
+ NULL, /* base_init */
+ NULL, /* base_finalize */
+ (GClassInitFunc) gal_view_minicard_class_init,
+ NULL, /* class_finalize */
+ NULL, /* class_data */
+ sizeof (GalViewMinicard),
+ 0, /* n_preallocs */
+ (GInstanceInitFunc) gal_view_minicard_init,
};
-
- type = gtk_type_unique (PARENT_TYPE, &info);
+
+ type = g_type_register_static (PARENT_TYPE, "GalViewMinicard", &info, 0);
}
return type;