summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergios - Anestis Kefalidis <sergioskefalidis@gmail.com>2022-03-10 14:24:44 +0200
committerAlexander Schwinn <alexxcons@xfce.org>2022-03-10 17:16:35 +0000
commit46dd6340fa332fb9cffe9c5f76f474b6d6db4e51 (patch)
tree2bc1c8fcd7dcc13809814e70b46843c5aab6a4f5
parente58b992bc3092e3b3db2317067ac9d55ae88e04e (diff)
downloadthunar-46dd6340fa332fb9cffe9c5f76f474b6d6db4e51.tar.gz
Avoid uneccessary type conversions.
-rw-r--r--thunar/thunar-window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/thunar/thunar-window.c b/thunar/thunar-window.c
index 5bbf93a7..f53660de 100644
--- a/thunar/thunar-window.c
+++ b/thunar/thunar-window.c
@@ -4378,7 +4378,7 @@ thunar_window_menu_item_selected (ThunarWindow *window,
GtkWidget *menu_item)
{
gchar *tooltip;
- gint id;
+ guint id;
_thunar_return_if_fail (THUNAR_IS_WINDOW (window));
@@ -4402,7 +4402,7 @@ static void
thunar_window_menu_item_deselected (ThunarWindow *window,
GtkWidget *menu_item)
{
- gint id;
+ guint id;
_thunar_return_if_fail (THUNAR_IS_WINDOW (window));