From 23c8103b45433c0bef316c84acbc74db4dcb5621 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Thu, 10 Oct 2019 17:38:23 +0200 Subject: Make symbol names unique across all files Enables Meson unity builds, helps ctags work, and reduces space for bugs --- src/slide_window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/slide_window.c') diff --git a/src/slide_window.c b/src/slide_window.c index 8a0db2c..75d40d2 100644 --- a/src/slide_window.c +++ b/src/slide_window.c @@ -285,7 +285,7 @@ static gboolean sw_key_press_sig(GtkWidget *da, GdkEventKey *event, } -static void about_sig(GSimpleAction *action, GVariant *parameter, gpointer vp) +static void sw_about_sig(GSimpleAction *action, GVariant *parameter, gpointer vp) { SlideWindow *sw = vp; open_about_dialog(sw->window); @@ -294,7 +294,7 @@ static void about_sig(GSimpleAction *action, GVariant *parameter, gpointer vp) GActionEntry sw_entries[] = { - { "about", about_sig, NULL, NULL, NULL }, + { "about", sw_about_sig, NULL, NULL, NULL }, { "paste", paste_sig, NULL, NULL, NULL }, { "copyframe", copy_frame_sig, NULL, NULL, NULL }, { "deleteframe", delete_frame_sig, NULL, NULL, NULL }, -- cgit v1.2.3