From b7c8a634f190e176b1d3b201ff08d861ba5e265b Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Sat, 14 Jan 2012 10:07:43 +0100 Subject: Mark the entry functions as called --- tests/dummy-indicator-entry-func.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/dummy-indicator-entry-func.c b/tests/dummy-indicator-entry-func.c index bccd818..96e5ad0 100644 --- a/tests/dummy-indicator-entry-func.c +++ b/tests/dummy-indicator-entry-func.c @@ -55,21 +55,24 @@ get_accessible_desc (IndicatorObject * io) static void entry_activate (IndicatorObject * io, IndicatorObjectEntry * entry, guint timestamp) { - + DummyIndicatorEntryFunc * self = DUMMY_INDICATOR_ENTRY_FUNC(io); + self->entry_activate_called = TRUE; return; } static void entry_activate_window (IndicatorObject * io, IndicatorObjectEntry * entry, guint windowid, guint timestamp) { - + DummyIndicatorEntryFunc * self = DUMMY_INDICATOR_ENTRY_FUNC(io); + self->entry_activate_window_called = TRUE; return; } static void entry_close (IndicatorObject * io, IndicatorObjectEntry * entry, guint timestamp) { - + DummyIndicatorEntryFunc * self = DUMMY_INDICATOR_ENTRY_FUNC(io); + self->entry_close_called = TRUE; return; } -- cgit v1.2.3