Revision: 1640 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1640&view=re... Author: frlan Date: 2010-10-08 23:31:49 +0000 (Fri, 08 Oct 2010)
Log Message: ----------- GeanyLaTeX: Fix compiler warnings caused by wrong sorting of void and static
Modified Paths: -------------- trunk/geanylatex/src/bibtex.c trunk/geanylatex/src/bibtex.h trunk/geanylatex/src/geanylatex.c
Modified: trunk/geanylatex/src/bibtex.c =================================================================== --- trunk/geanylatex/src/bibtex.c 2010-10-08 23:29:53 UTC (rev 1639) +++ trunk/geanylatex/src/bibtex.c 2010-10-08 23:31:49 UTC (rev 1640) @@ -171,4 +171,3 @@ sci_end_undo_action(doc->editor->sci); g_free(tmp); } -
Modified: trunk/geanylatex/src/bibtex.h =================================================================== --- trunk/geanylatex/src/bibtex.h 2010-10-08 23:29:53 UTC (rev 1639) +++ trunk/geanylatex/src/bibtex.h 2010-10-08 23:31:49 UTC (rev 1640) @@ -89,4 +89,5 @@ void glatex_bibtex_write_entry(GPtrArray *entry, gint doctype);
GPtrArray *glatex_bibtex_init_empty_entry(); + #endif
Modified: trunk/geanylatex/src/geanylatex.c =================================================================== --- trunk/geanylatex/src/geanylatex.c 2010-10-08 23:29:53 UTC (rev 1639) +++ trunk/geanylatex/src/geanylatex.c 2010-10-08 23:31:49 UTC (rev 1640) @@ -2046,7 +2046,7 @@ }
-void static +static void add_wizard_to_generic_toolbar() { if (glatex_wizard_generic_toolbar_item == NULL) @@ -2062,7 +2062,7 @@ }
-void static +static void remove_wizard_from_generic_toolbar() { if (glatex_wizard_generic_toolbar_item != NULL) @@ -2073,7 +2073,7 @@ }
-void static +static void add_menu_to_menubar() { GtkWidget *tmp = NULL; @@ -2244,7 +2244,7 @@ }
-void static +static void remove_menu_from_menubar() { if (main_menu_item != NULL) @@ -2256,7 +2256,7 @@ }
-void static +static void remove_menu_from_tools_menu() { if (menu_latex_toolbar_wizard != NULL) @@ -2267,7 +2267,7 @@ }
-void static +static void add_wizard_to_tools_menu() { if (menu_latex_toolbar_wizard == NULL) @@ -2331,4 +2331,3 @@ g_free(glatex_ref_all_string); } -
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
plugins-commits@lists.geany.org