[gedit] Add missing return avlue in process_window_event
- From: Jesse van den Kieboom <jessevdk src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gedit] Add missing return avlue in process_window_event
- Date: Mon, 16 Jan 2012 20:29:05 +0000 (UTC)
commit 220a909174e993f8ad2abf469964414260d03883
Author: Jesse van den Kieboom <jessevdk gnome org>
Date: Mon Jan 16 21:28:55 2012 +0100
Add missing return avlue in process_window_event
gedit/gedit-app.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/gedit/gedit-app.c b/gedit/gedit-app.c
index 8066c70..4615c66 100644
--- a/gedit/gedit-app.c
+++ b/gedit/gedit-app.c
@@ -1077,8 +1077,10 @@ gedit_app_process_window_event (GeditApp *app,
if (GEDIT_APP_GET_CLASS (app)->process_window_event)
{
- GEDIT_APP_GET_CLASS (app)->process_window_event (app, window, event);
+ return GEDIT_APP_GET_CLASS (app)->process_window_event (app, window, event);
}
+
+ return FALSE;
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]