summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-03-10 11:51:43 +0100
committerraveit65 <[email protected]>2021-03-15 19:27:23 +0100
commitb462aeed6e57cf9361329233c361fb6f0d72897e (patch)
tree17d18d02fa6268146874d08aeed5dd640ebd74c1
parent61620f2279c7899c153791260dd203476462be60 (diff)
downloadmate-notification-daemon-b462aeed6e57cf9361329233c361fb6f0d72897e.tar.bz2
mate-notification-daemon-b462aeed6e57cf9361329233c361fb6f0d72897e.tar.xz
Remove shadow warnings [-Wshadow]
-rw-r--r--src/capplet/mate-notification-properties.c13
-rw-r--r--src/daemon/daemon.c22
2 files changed, 20 insertions, 15 deletions
diff --git a/src/capplet/mate-notification-properties.c b/src/capplet/mate-notification-properties.c
index 7d43455..8514ee9 100644
--- a/src/capplet/mate-notification-properties.c
+++ b/src/capplet/mate-notification-properties.c
@@ -70,7 +70,7 @@ static void notification_properties_position_notify(GSettings *settings, gchar *
{
GtkTreeModel* model;
GtkTreeIter iter;
- const char* location;
+ const char *location;
gboolean valid;
location = g_settings_get_string(dialog->gsettings, key);
@@ -80,18 +80,17 @@ static void notification_properties_position_notify(GSettings *settings, gchar *
for (valid = gtk_tree_model_get_iter_first(model, &iter); valid; valid = gtk_tree_model_iter_next(model, &iter))
{
- gchar* key;
+ gchar *it_key;
- gtk_tree_model_get(model, &iter, NOTIFY_POSITION_NAME, &key, -1);
+ gtk_tree_model_get(model, &iter, NOTIFY_POSITION_NAME, &it_key, -1);
- if (g_str_equal(key, location))
+ if (g_str_equal(it_key, location))
{
gtk_combo_box_set_active_iter(GTK_COMBO_BOX(dialog->position_combo), &iter);
- g_free(key);
+ g_free(it_key);
break;
}
-
- g_free(key);
+ g_free (it_key);
}
}
diff --git a/src/daemon/daemon.c b/src/daemon/daemon.c
index d582007..d3b3c65 100644
--- a/src/daemon/daemon.c
+++ b/src/daemon/daemon.c
@@ -1525,7 +1525,6 @@ static gboolean notify_daemon_notify_handler(NotifyDaemonNotifications *object,
GdkSeat *seat;
GdkDevice *pointer;
GdkScreen* screen;
- gint x, y;
theme_set_notification_arrow (nw, FALSE, 0, 0);
@@ -1534,12 +1533,19 @@ static gboolean notify_daemon_notify_handler(NotifyDaemonNotifications *object,
* number the user has set in gsettings. */
if (g_settings_get_boolean(daemon->gsettings, GSETTINGS_KEY_USE_ACTIVE_MONITOR))
{
+ gint coordinate_x, coordinate_y;
+
display = gdk_display_get_default ();
seat = gdk_display_get_default_seat (display);
pointer = gdk_seat_get_pointer (seat);
- gdk_device_get_position (pointer, &screen, &x, &y);
- monitor_id = gdk_display_get_monitor_at_point (gdk_screen_get_display (screen), x, y);
+ gdk_device_get_position (pointer,
+ &screen,
+ &coordinate_x,
+ &coordinate_y);
+ monitor_id = gdk_display_get_monitor_at_point (gdk_screen_get_display (screen),
+ coordinate_x,
+ coordinate_y);
}
else
{
@@ -1604,14 +1610,14 @@ static gboolean notify_daemon_notify_handler(NotifyDaemonNotifications *object,
}
else
{
- _NotifyPendingClose* data;
+ _NotifyPendingClose *notification_data;
/* The notification was not shown, so queue up a close
* for it */
- data = g_new0 (_NotifyPendingClose, 1);
- data->id = id;
- data->daemon = g_object_ref (daemon);
- g_idle_add ((GSourceFunc) _close_notification_not_shown, data);
+ notification_data = g_new0 (_NotifyPendingClose, 1);
+ notification_data->id = id;
+ notification_data->daemon = g_object_ref (daemon);
+ g_idle_add ((GSourceFunc) _close_notification_not_shown, notification_data);
}
g_free (sound_file);