aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-config.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2002-04-26 03:56:41 +0800
committerChris Lahey <clahey@src.gnome.org>2002-04-26 03:56:41 +0800
commitb036c8392d6e577fd8e77d67f6359b12f2eb2985 (patch)
treeb246bbef16248c3adc3ff4b0b9344fb2d550f9d8 /widgets/table/e-table-config.c
parent22612ec2823ae168001da8fab5579bce0ba53af8 (diff)
downloadgsoc2013-evolution-b036c8392d6e577fd8e77d67f6359b12f2eb2985.tar
gsoc2013-evolution-b036c8392d6e577fd8e77d67f6359b12f2eb2985.tar.gz
gsoc2013-evolution-b036c8392d6e577fd8e77d67f6359b12f2eb2985.tar.bz2
gsoc2013-evolution-b036c8392d6e577fd8e77d67f6359b12f2eb2985.tar.lz
gsoc2013-evolution-b036c8392d6e577fd8e77d67f6359b12f2eb2985.tar.xz
gsoc2013-evolution-b036c8392d6e577fd8e77d67f6359b12f2eb2985.tar.zst
gsoc2013-evolution-b036c8392d6e577fd8e77d67f6359b12f2eb2985.zip
Ansification patch from danw.
2002-04-25 Christopher James Lahey <clahey@ximian.com> * e-cell-checkbox.c, e-cell-combo.c, e-cell-date.c, e-cell-float.c, e-cell-number.c, e-cell-pixbuf.c, e-cell-popup.c, e-cell-size.c, e-cell-spin-button.c, e-cell-text.c, e-cell-toggle.c, e-cell-tree.c, e-cell.c, e-cell.h, e-table-click-to-add.c, e-table-col.c, e-table-column-specification.c, e-table-config-field.c, e-table-config.c, e-table-extras.c, e-table-field-chooser-dialog.c, e-table-field-chooser-item.c, e-table-field-chooser.c, e-table-group-container.c, e-table-group-leaf.c, e-table-group.c, e-table-header-item.c, e-table-header.c, e-table-item.c, e-table-memory-callbacks.c, e-table-model.c, e-table-scrolled.c, e-table-selection-model.c, e-table-sort-info.c, e-table-sorted-variable.c, e-table-sorted.c, e-table-sorter.c, e-table-specification.c, e-table-state.c, e-table-subset-variable.c, e-table-subset.c, e-table-without.c, e-table.c, e-table.h, e-tree-scrolled.c, e-tree-selection-model.c, e-tree-sorted-variable.c, e-tree-sorted.c, e-tree-table-adapter.c, e-tree.c: Ansification patch from danw. svn path=/trunk/; revision=16586
Diffstat (limited to 'widgets/table/e-table-config.c')
-rw-r--r--widgets/table/e-table-config.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/widgets/table/e-table-config.c b/widgets/table/e-table-config.c
index cd9a3359ba..b9922a2d38 100644
--- a/widgets/table/e-table-config.c
+++ b/widgets/table/e-table-config.c
@@ -60,7 +60,7 @@ enum {
enum {
ARG_0,
- ARG_STATE,
+ ARG_STATE
};
static guint e_table_config_signals [LAST_SIGNAL] = { 0, };
@@ -586,13 +586,13 @@ configure_dialog (GladeXML *gui, const char *widget_name, ETableConfig *config)
#endif
static void
-connect_button (ETableConfig *config, GladeXML *gui, const char *widget_name, void *cback)
+connect_button (ETableConfig *config, GladeXML *gui, const char *widget_name, GtkSignalFunc cback)
{
GtkWidget *button = glade_xml_get_widget (gui, widget_name);
if (button) {
gtk_signal_connect (GTK_OBJECT (button), "clicked",
- GTK_SIGNAL_FUNC (cback), config);
+ cback, config);
}
}
@@ -1134,4 +1134,4 @@ e_table_config_raise (ETableConfig *config)
gdk_window_raise (GTK_WIDGET (config->dialog_toplevel)->window);
}
-E_MAKE_TYPE(e_table_config, "ETableConfig", ETableConfig, config_class_init, config_init, PARENT_TYPE);
+E_MAKE_TYPE(e_table_config, "ETableConfig", ETableConfig, config_class_init, config_init, PARENT_TYPE)