aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/gal-view-factory-minicard.h
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-factory-minicard.h
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-factory-minicard.h')
-rw-r--r--addressbook/gui/widgets/gal-view-factory-minicard.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/addressbook/gui/widgets/gal-view-factory-minicard.h b/addressbook/gui/widgets/gal-view-factory-minicard.h
index 3816fdba46..02eea99e47 100644
--- a/addressbook/gui/widgets/gal-view-factory-minicard.h
+++ b/addressbook/gui/widgets/gal-view-factory-minicard.h
@@ -13,11 +13,11 @@
#include <gtk/gtkobject.h>
#include <gal/menus/gal-view-factory.h>
-#define GAL_VIEW_FACTORY_MINICARD_TYPE (gal_view_factory_minicard_get_type ())
-#define GAL_VIEW_FACTORY_MINICARD(o) (GTK_CHECK_CAST ((o), GAL_VIEW_FACTORY_MINICARD_TYPE, GalViewFactoryMinicard))
-#define GAL_VIEW_FACTORY_MINICARD_CLASS(k) (GTK_CHECK_CLASS_CAST((k), GAL_VIEW_FACTORY_MINICARD_TYPE, GalViewFactoryMinicardClass))
-#define GAL_IS_VIEW_FACTORY_MINICARD(o) (GTK_CHECK_TYPE ((o), GAL_VIEW_FACTORY_MINICARD_TYPE))
-#define GAL_IS_VIEW_FACTORY_MINICARD_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), GAL_VIEW_FACTORY_MINICARD_TYPE))
+#define GAL_TYPE_VIEW_FACTORY_MINICARD (gal_view_factory_minicard_get_type ())
+#define GAL_VIEW_FACTORY_MINICARD(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GAL_TYPE_VIEW_FACTORY_MINICARD, GalViewFactoryMinicard))
+#define GAL_VIEW_FACTORY_MINICARD_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), GAL_TYPE_VIEW_FACTORY_MINICARD, GalViewFactoryMinicardClass))
+#define GAL_IS_VIEW_FACTORY_MINICARD(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GAL_TYPE_VIEW_FACTORY_MINICARD))
+#define GAL_IS_VIEW_FACTORY_MINICARD_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GAL_TYPE_VIEW_FACTORY_MINICARD))
typedef struct {
GalViewFactory base;
@@ -28,7 +28,7 @@ typedef struct {
} GalViewFactoryMinicardClass;
/* Standard functions */
-GtkType gal_view_factory_minicard_get_type (void);
+GType gal_view_factory_minicard_get_type (void);
GalViewFactory *gal_view_factory_minicard_new (void);
GalViewFactory *gal_view_factory_minicard_construct (GalViewFactoryMinicard *factory);