diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-06 08:42:52 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-06 08:42:52 +0800 |
commit | f36f2d1fcf5851aa1d00ab8096ca0b362880475b (patch) | |
tree | 73738945116817106dec0cb73434994964c9d3d2 /my-evolution/e-summary-table.c | |
parent | 75f89dc8698e1d6589c7f5e51c8fe3164584f583 (diff) | |
download | gsoc2013-evolution-f36f2d1fcf5851aa1d00ab8096ca0b362880475b.tar gsoc2013-evolution-f36f2d1fcf5851aa1d00ab8096ca0b362880475b.tar.gz gsoc2013-evolution-f36f2d1fcf5851aa1d00ab8096ca0b362880475b.tar.bz2 gsoc2013-evolution-f36f2d1fcf5851aa1d00ab8096ca0b362880475b.tar.lz gsoc2013-evolution-f36f2d1fcf5851aa1d00ab8096ca0b362880475b.tar.xz gsoc2013-evolution-f36f2d1fcf5851aa1d00ab8096ca0b362880475b.tar.zst gsoc2013-evolution-f36f2d1fcf5851aa1d00ab8096ca0b362880475b.zip |
#include <string.h>.
* metar.c: #include <string.h>.
* main.c (main): Use gnome_program_init().
* e-summary-tasks.c (e_summary_tasks_protocol): Use
bonobo-activation.
* e-summary-table.c (set_value_at): Use g_signal_emit() instead of
gtk_signal_emit().
* e-summary-shown.c (e_summary_shown_class_init): GObjectified.
(construct_pixmap_button): Use gtk_image_new_from_stock() instead
of gnome_stock_pixmap_new().
* e-summary-preferences.c (e_summary_preferences_restore): Use
EConfigListener.
(add_dialog_clicked_cb): Add some missing consts.
(factory_fn): Pass NULL as the domain arg to glade_xml_new().
(factory_fn): Add id arg.
(e_summary_preferences_register_config_control_factory):
* e-summary-mail.c (e_summary_folder_init_folder_store): Use
bonobo-activation.
* e-summary-factory.c (control_activate): Pass NULL ev arg to
bonobo functions that now need it.
(control_deactivate): Likewise.
(control_activate_cb): Likewise.
(e_summary_factory_new_control): Use g_signal_connect() instead of
gtk_signal_connect().
* e-summary-calendar.c (e_summary_calendar_protocol): Use
bonobo_activation.
* e-summary.c: Update gnome-print #includes. Added some missing
#includes.
(e_summary_url_clicked): Pass NULL as the error arg to
gnome_url_show().
(do_summary_print): Use GnomePrintConfig instead of GnomePrinter
et al.
* e-cell-tri.h: Removed BEGIN_GNOME_DECLS/END_GNOME_DECLS.
* e-summary.c: Removed #include <libgnome/gnome-defs.h>. Ported
to e-config-listener.c.
* e-cell-tri.h: Removed #include <libgnome/gnome-defs.h>.
* component-factory.c: #include <gtk/gtkmain.h>.
(create_component): Use g_signal_connect. Match prototype with
the one required by bonobo_generic_factory().
* Makefile.am: Add @INTLTOOL_SERVER_RULE@.
($(MAIL_GENERATED)): Update with new ORBit rules.
svn path=/trunk/; revision=18574
Diffstat (limited to 'my-evolution/e-summary-table.c')
-rw-r--r-- | my-evolution/e-summary-table.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/my-evolution/e-summary-table.c b/my-evolution/e-summary-table.c index ac4bf7f49a..7edc82e0b4 100644 --- a/my-evolution/e-summary-table.c +++ b/my-evolution/e-summary-table.c @@ -29,6 +29,7 @@ #include <gtk/gtkvbox.h> #include <gtk/gtkenums.h> +#include <gtk/gtksignal.h> #include <gal/util/e-util.h> #include <gal/widgets/e-gui-utils.h> @@ -46,7 +47,6 @@ #include <gal/e-table/e-tree-table-adapter.h> #include <libgnome/gnome-i18n.h> -#include <libgnomeui/gnome-init.h> #include "e-summary-table.h" #include "e-cell-tri.h" @@ -249,7 +249,7 @@ set_value_at (ETreeModel *etm, if (entry->editable == TRUE) { entry->shown = GPOINTER_TO_INT (val) == 1 ? FALSE : TRUE; - gtk_signal_emit (GTK_OBJECT (est), table_signals[ITEM_CHANGED], path); + g_signal_emit (est, table_signals[ITEM_CHANGED], 0, path); } } @@ -326,12 +326,11 @@ e_summary_table_class_init (GtkObjectClass *object_class) table_signals[ITEM_CHANGED] = gtk_signal_new ("item-changed", GTK_RUN_LAST, - object_class->type, + GTK_CLASS_TYPE (object_class), GTK_SIGNAL_OFFSET (ESummaryTableClass, item_changed), gtk_marshal_NONE__POINTER, GTK_TYPE_NONE, 1, GTK_TYPE_POINTER); - gtk_object_class_add_signals (object_class, table_signals, LAST_SIGNAL); } static void |