diff options
author | Robert Antoni Buj Gelonch <[email protected]> | 2022-08-15 04:00:56 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-08-15 10:00:56 +0800 |
commit | a6c354617a1e5876308df5007cd52907b3d742f9 (patch) | |
tree | eec5596a8b0fe42a8b6d10432eb49e107c89c32b /command/src/command.c | |
parent | dc37d79d6e2797f7f613051261466b93fc01107d (diff) | |
download | mate-applets-a6c354617a1e5876308df5007cd52907b3d742f9.tar.bz2 mate-applets-a6c354617a1e5876308df5007cd52907b3d742f9.tar.xz |
command: fix -Wincompatible-pointer-types warning (#631)
Diffstat (limited to 'command/src/command.c')
-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")); |