diff options
author | Colomban Wendling <[email protected]> | 2023-11-15 15:10:11 +0100 |
---|---|---|
committer | Luke from DC <[email protected]> | 2023-11-21 20:19:58 +0000 |
commit | 96c7ebc6dc9e8b8327db04a9570054ee78743353 (patch) | |
tree | 5d600712c7b3c035dbe78045641cdad9e358b91a /applets/notification_area/system-tray | |
parent | 7632b4fe9bb81a440bdde64c8cc45b15e07b1de8 (diff) | |
download | mate-panel-96c7ebc6dc9e8b8327db04a9570054ee78743353.tar.bz2 mate-panel-96c7ebc6dc9e8b8327db04a9570054ee78743353.tar.xz |
Reduce scope of variables
Mostly found by cppcheck.
Diffstat (limited to 'applets/notification_area/system-tray')
-rw-r--r-- | applets/notification_area/system-tray/na-tray-manager.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/applets/notification_area/system-tray/na-tray-manager.c b/applets/notification_area/system-tray/na-tray-manager.c index d4f27ff3..2bb679d8 100644 --- a/applets/notification_area/system-tray/na-tray-manager.c +++ b/applets/notification_area/system-tray/na-tray-manager.c @@ -537,7 +537,6 @@ na_tray_manager_unmanage (NaTrayManager *manager) { #ifdef GDK_WINDOWING_X11 GdkDisplay *display; - guint32 timestamp; GtkWidget *invisible; GdkWindow *window; @@ -556,7 +555,7 @@ na_tray_manager_unmanage (NaTrayManager *manager) if (gdk_selection_owner_get_for_display (display, manager->selection_atom) == window) { - timestamp = gdk_x11_get_server_time (window); + guint32 timestamp = gdk_x11_get_server_time (window); gdk_selection_owner_set_for_display (display, NULL, manager->selection_atom, |