diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-10-31 03:08:10 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-10-31 03:08:10 +0800 |
commit | 377b222ae3761bacb6739eb6d8f9c338c5647ba6 (patch) | |
tree | deb4aa70c9546536fd1f68a015fd09e9b76fcf17 | |
parent | 6e1f8c566ff84069ae72242fbfb8deebc86d3831 (diff) | |
download | gsoc2013-evolution-377b222ae3761bacb6739eb6d8f9c338c5647ba6.tar gsoc2013-evolution-377b222ae3761bacb6739eb6d8f9c338c5647ba6.tar.gz gsoc2013-evolution-377b222ae3761bacb6739eb6d8f9c338c5647ba6.tar.bz2 gsoc2013-evolution-377b222ae3761bacb6739eb6d8f9c338c5647ba6.tar.lz gsoc2013-evolution-377b222ae3761bacb6739eb6d8f9c338c5647ba6.tar.xz gsoc2013-evolution-377b222ae3761bacb6739eb6d8f9c338c5647ba6.tar.zst gsoc2013-evolution-377b222ae3761bacb6739eb6d8f9c338c5647ba6.zip |
Bumped the version number here to 0.15.99.10.
2001-10-30 Christopher James Lahey <clahey@ximian.com>
* configure.in: Bumped the version number here to 0.15.99.10.
From gal/e-table/ChangeLog:
2001-10-30 Christopher James Lahey <clahey@ximian.com>
* e-table.c (e_table_commit_click_to_add): Added this new function
to allow the user to specify a commit.
svn path=/trunk/; revision=14473
-rw-r--r-- | widgets/table/e-table.c | 6 | ||||
-rw-r--r-- | widgets/table/e-table.h | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/widgets/table/e-table.c b/widgets/table/e-table.c index 22ea5b0660..2e3efdc05c 100644 --- a/widgets/table/e-table.c +++ b/widgets/table/e-table.c @@ -1500,6 +1500,12 @@ e_table_right_click_up (ETable *table) e_selection_model_right_click_up(E_SELECTION_MODEL(table->selection)); } +void +e_table_commit_click_to_add (ETable *table) +{ + e_table_click_to_add_commit(E_TABLE_CLICK_TO_ADD(table->click_to_add)); +} + static void et_get_arg (GtkObject *o, GtkArg *arg, guint arg_id) { diff --git a/widgets/table/e-table.h b/widgets/table/e-table.h index 8824dafd31..9900821eb7 100644 --- a/widgets/table/e-table.h +++ b/widgets/table/e-table.h @@ -327,6 +327,8 @@ void e_table_invert_selection (ETable *table) /* This function is only needed in single_selection_mode. */ void e_table_right_click_up (ETable *table); +void e_table_commit_click_to_add (ETable *table); + END_GNOME_DECLS #endif /* _E_TABLE_H_ */ |