From 67df492152493bec7f3c645403d7efd3415df6ae Mon Sep 17 00:00:00 2001 From: Holger Berndt Date: Mon, 10 Jun 2013 23:05:19 +0200 Subject: [PATCH] Python plugin: Make some functions static --- src/plugins/python/python_plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/python/python_plugin.c b/src/plugins/python/python_plugin.c index fb015f9ef..7becb932c 100644 --- a/src/plugins/python/python_plugin.c +++ b/src/plugins/python/python_plugin.c @@ -506,7 +506,7 @@ static GtkActionEntry mainwindow_tools_python_actions[] = { {"Tools/PythonScripts/---", NULL, "---" }, }; -void python_menu_init(void) +static void python_menu_init(void) { MainWindow *mainwin; guint id; @@ -539,7 +539,7 @@ void python_menu_init(void) refresh_python_scripts_menus(NULL, NULL); } -void python_menu_done(void) +static void python_menu_done(void) { MainWindow *mainwin; -- 2.25.1