summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pluma/pluma-encodings-combo-box.c2
-rw-r--r--pluma/pluma-view.c2
-rw-r--r--pluma/pluma-window-private.h9
3 files changed, 7 insertions, 6 deletions
diff --git a/pluma/pluma-encodings-combo-box.c b/pluma/pluma-encodings-combo-box.c
index 1188c2d1..94aa4401 100644
--- a/pluma/pluma-encodings-combo-box.c
+++ b/pluma/pluma-encodings-combo-box.c
@@ -47,7 +47,7 @@ struct _PlumaEncodingsComboBoxPrivate
GSettings *enc_settings;
GtkListStore *store;
- glong changed_id;
+ gulong changed_id;
guint activated_item;
diff --git a/pluma/pluma-view.c b/pluma/pluma-view.c
index 88385c54..9ef88e3b 100644
--- a/pluma/pluma-view.c
+++ b/pluma/pluma-view.c
@@ -97,7 +97,7 @@ struct _PlumaViewPrivate
GtkWidget *search_entry;
guint typeselect_flush_timeout;
- guint search_entry_changed_id;
+ gulong search_entry_changed_id;
gboolean disable_popdown;
diff --git a/pluma/pluma-window-private.h b/pluma/pluma-window-private.h
index 0e50b7f6..25e22296 100644
--- a/pluma/pluma-window-private.h
+++ b/pluma/pluma-window-private.h
@@ -69,9 +69,10 @@ struct _PlumaWindowPrivate
GtkWidget *statusbar;
guint generic_message_cid;
guint tip_message_cid;
- guint tab_width_id;
- guint spaces_instead_of_tabs_id;
- guint language_changed_id;
+ /* The handler IDs */
+ gulong tab_width_id;
+ gulong spaces_instead_of_tabs_id;
+ gulong language_changed_id;
/* Menus & Toolbars */
GtkUIManager *manager;
@@ -107,7 +108,7 @@ struct _PlumaWindowPrivate
PlumaWindowState state;
- gint bottom_panel_item_removed_handler_id;
+ gulong bottom_panel_item_removed_handler_id;
GtkWindowGroup *window_group;