summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Antoni Buj Gelonch <[email protected]>2022-08-15 04:00:56 +0200
committerraveit65 <[email protected]>2024-01-25 21:02:45 +0100
commitffc2beb5e1ec9b91743f8d9871136e1c0d915836 (patch)
tree7e912474fbcab29d67fdf528344577b63ace69d6
parent660168983764dc5af3bcef1cf41eacf296d7b46a (diff)
downloadmate-applets-ffc2beb5e1ec9b91743f8d9871136e1c0d915836.tar.bz2
mate-applets-ffc2beb5e1ec9b91743f8d9871136e1c0d915836.tar.xz
command: fix -Wincompatible-pointer-types warning (#631)
-rw-r--r--command/src/command.c2
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"));