summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-10-24 13:53:39 +0200
committerRobert Antoni Buj Gelonch <[email protected]>2022-01-01 11:53:51 +0100
commit579ee708bafacaa41d15f1840d15e3c78ef0685e (patch)
treeb3065c00f726ba8469c2b0403382317cb2744ea9
parent450596ee1c1a41be3e19aeadbbf86f06925a2dd0 (diff)
downloadpluma-579ee708bafacaa41d15f1840d15e3c78ef0685e.tar.bz2
pluma-579ee708bafacaa41d15f1840d15e3c78ef0685e.tar.xz
pluma: handler IDs are gulong, not guint
-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;