[gtksourceview] gutter: Use gulong to store signal handler IDs
- From: Philip Withnall <pwithnall src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtksourceview] gutter: Use gulong to store signal handler IDs
- Date: Tue, 23 Sep 2014 06:52:37 +0000 (UTC)
commit 00b6d99e9a1debc88f8ec44bc6d4d0f6efe77b85
Author: Philip Withnall <philip tecnocode co uk>
Date: Sun Sep 21 09:49:05 2014 +0100
gutter: Use gulong to store signal handler IDs
guint is incorrect.
https://bugzilla.gnome.org/show_bug.cgi?id=737067
gtksourceview/gtksourcegutter.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/gtksourceview/gtksourcegutter.c b/gtksourceview/gtksourcegutter.c
index 8b55d52..fa1d01e 100644
--- a/gtksourceview/gtksourcegutter.c
+++ b/gtksourceview/gtksourcegutter.c
@@ -66,11 +66,11 @@ typedef struct
gint prelit;
gint position;
- guint queue_draw_handler;
- guint size_changed_handler;
- guint notify_xpad_handler;
- guint notify_ypad_handler;
- guint notify_visible_handler;
+ gulong queue_draw_handler;
+ gulong size_changed_handler;
+ gulong notify_xpad_handler;
+ gulong notify_ypad_handler;
+ gulong notify_visible_handler;
} Renderer;
struct _GtkSourceGutterPrivate
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]