Bumped version number to 0.11.99.3 for ETableWithout.

2001-09-07  Christopher James Lahey  <clahey@ximian.com>

	* configure.in: Bumped version number to 0.11.99.3 for
	ETableWithout.

	* gal/widgets/e-selection-model.c, gal/widgets/e-selection-model.h
	(e_selection_model_maybe_do_something): Return a value based on
	whether we did something.

svn path=/trunk/; revision=12679
This commit is contained in:
Christopher James Lahey
2001-09-07 19:03:00 +00:00
committed by Chris Lahey
parent 60e65ee806
commit 5b32dc6ffc
2 changed files with 4 additions and 2 deletions

View File

@ -422,7 +422,7 @@ e_selection_model_do_something (ESelectionModel *selection,
* right clicks and other events where if the user hit the selection,
* they don't want it to change.
*/
void
gboolean
e_selection_model_maybe_do_something (ESelectionModel *selection,
guint row,
guint col,
@ -432,8 +432,10 @@ e_selection_model_maybe_do_something (ESelectionModel *selection,
e_selection_model_change_cursor(selection, row, col);
gtk_signal_emit(GTK_OBJECT(selection),
e_selection_model_signals[CURSOR_CHANGED], row, col);
return FALSE;
} else {
e_selection_model_do_something(selection, row, col, state);
return TRUE;
}
}

View File

@ -76,7 +76,7 @@ void e_selection_model_do_something (ESelectionModel *esm,
guint row,
guint col,
GdkModifierType state);
void e_selection_model_maybe_do_something (ESelectionModel *esm,
gboolean e_selection_model_maybe_do_something (ESelectionModel *esm,
guint row,
guint col,
GdkModifierType state);