SF.net SVN: geany-plugins:[1470] trunk/geanylatex/src/geanylatex.c
frlan at users.sourceforge.net
frlan at xxxxx
Sun Jun 27 11:31:51 UTC 2010
Revision: 1470
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1470&view=rev
Author: frlan
Date: 2010-06-27 11:31:50 +0000 (Sun, 27 Jun 2010)
Log Message:
-----------
GeanyLaTeX: Mark a couple of functions static to fix some reportings by -Wmissing-prototypes compiler flag
Modified Paths:
--------------
trunk/geanylatex/src/geanylatex.c
Modified: trunk/geanylatex/src/geanylatex.c
===================================================================
--- trunk/geanylatex/src/geanylatex.c 2010-06-27 10:57:28 UTC (rev 1469)
+++ trunk/geanylatex/src/geanylatex.c 2010-06-27 11:31:50 UTC (rev 1470)
@@ -288,14 +288,14 @@
}
/* Functions to toggle the status of plugin */
-void glatex_set_latextoggle_status(gboolean new_status)
+static void glatex_set_latextoggle_status(gboolean new_status)
{
/* No more function at the moment.*/
if (toggle_active != new_status)
toggle_active = new_status;
}
-void glatex_toggle_status(G_GNUC_UNUSED GtkMenuItem * menuitem)
+static void glatex_toggle_status(G_GNUC_UNUSED GtkMenuItem * menuitem)
{
if (toggle_active == TRUE)
glatex_set_latextoggle_status(FALSE);
@@ -628,7 +628,7 @@
}
-void on_document_close(G_GNUC_UNUSED GObject *obj, GeanyDocument *doc,
+static void on_document_close(G_GNUC_UNUSED GObject *obj, GeanyDocument *doc,
G_GNUC_UNUSED gpointer user_data)
{
g_return_if_fail(doc != NULL);
@@ -682,7 +682,7 @@
}
/* Called when keys were pressed */
-void glatex_kblatex_toggle(G_GNUC_UNUSED guint key_id)
+static void glatex_kblatex_toggle(G_GNUC_UNUSED guint key_id)
{
if (toggle_active == TRUE)
glatex_set_latextoggle_status(FALSE);
@@ -703,7 +703,7 @@
};
-inline gchar*
+static inline gchar*
get_latex_command(gint tab_index)
{
return glatex_char_array[tab_index].latex;
@@ -954,7 +954,7 @@
}
-void glatex_character_create_menu_item(GtkWidget *menu, const gchar *label,
+static void glatex_character_create_menu_item(GtkWidget *menu, const gchar *label,
gint letter, MenuCallback callback)
{
GtkWidget *tmp;
@@ -1013,7 +1013,7 @@
}
-void glatex_sub_menu_init(GtkWidget *base_menu, SubMenuTemplate *menu_template,
+static void glatex_sub_menu_init(GtkWidget *base_menu, SubMenuTemplate *menu_template,
CategoryName *category_name,
MenuCallback callback_function)
{
@@ -1799,7 +1799,7 @@
gtk_widget_show_all(dialog);
}
-void init_keybindings()
+static void init_keybindings()
{
/* init keybindins */
keybindings_set_item(plugin_key_group, KB_LATEX_WIZARD, glatex_kbwizard,
@@ -1866,7 +1866,7 @@
}
-void glatex_init_configuration()
+static void glatex_init_configuration()
{
GKeyFile *config = g_key_file_new();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Plugins-Commits
mailing list