diff options
author | Robert Antoni Buj Gelonch <[email protected]> | 2022-08-15 04:00:56 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2024-01-25 21:02:45 +0100 |
commit | ffc2beb5e1ec9b91743f8d9871136e1c0d915836 (patch) | |
tree | 7e912474fbcab29d67fdf528344577b63ace69d6 | |
parent | 660168983764dc5af3bcef1cf41eacf296d7b46a (diff) | |
download | mate-applets-ffc2beb5e1ec9b91743f8d9871136e1c0d915836.tar.bz2 mate-applets-ffc2beb5e1ec9b91743f8d9871136e1c0d915836.tar.xz |
command: fix -Wincompatible-pointer-types warning (#631)
-rw-r--r-- | command/src/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/command/src/command.c b/command/src/command.c index ac756eb2..2cc44e49 100644 --- a/command/src/command.c +++ b/command/src/command.c @@ -469,7 +469,7 @@ command_applet_fill (MatePanelApplet* applet) "visible", G_SETTINGS_BIND_DEFAULT); - atk_widget = gtk_widget_get_accessible (command_applet->applet); + atk_widget = gtk_widget_get_accessible (GTK_WIDGET (command_applet->applet)); if (GTK_IS_ACCESSIBLE (atk_widget)) { atk_object_set_name (atk_widget, _("Command applet")); |