Skip to content

Commit 5866118

Browse files
authored
Merge pull request #427 from Lihis/fix-incompatible-pointer-in-window_init
Fix incompatible pointer in marker_window_init()
2 parents d72b165 + 92a679e commit 5866118

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/marker-window.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -866,7 +866,7 @@ marker_window_init (MarkerWindow *window)
866866
if (marker_prefs_get_show_sidebar())
867867
{
868868
// show sidebar and set the "Sidebar" button as activated
869-
g_action_group_activate_action(G_ACTION_MAP (window), "sidebar", NULL);
869+
g_action_group_activate_action(G_ACTION_GROUP (window), "sidebar", NULL);
870870
}
871871
g_signal_connect(window, "delete-event", G_CALLBACK(window_deleted_event_cb), window);
872872

0 commit comments

Comments
 (0)