Revision: 310 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=310&view=rev Author: frlan Date: 2008-11-21 17:58:05 +0000 (Fri, 21 Nov 2008)
Log Message: ----------- GeanyLaTeX: Update to plugin API version 111
Modified Paths: -------------- trunk/geanylatex/src/bibtex.c trunk/geanylatex/src/geanylatex.c
Modified: trunk/geanylatex/src/bibtex.c =================================================================== --- trunk/geanylatex/src/bibtex.c 2008-11-21 13:18:30 UTC (rev 309) +++ trunk/geanylatex/src/bibtex.c 2008-11-21 17:58:05 UTC (rev 310) @@ -132,7 +132,7 @@ int i; if(str != NULL) { for (i = 0; i < N_ENTRIES; i++) { - if (p_utils->utils_str_casecmp(str, label_entry[i]) == 0) + if (p_utils->str_casecmp(str, label_entry[i]) == 0) return i; } }
Modified: trunk/geanylatex/src/geanylatex.c =================================================================== --- trunk/geanylatex/src/geanylatex.c 2008-11-21 13:18:30 UTC (rev 309) +++ trunk/geanylatex/src/geanylatex.c 2008-11-21 17:58:05 UTC (rev 310) @@ -24,7 +24,7 @@
#include "geanylatex.h"
-PLUGIN_VERSION_CHECK(104) +PLUGIN_VERSION_CHECK(111)
PLUGIN_SET_INFO(_("LaTeX"), _("Plugin to provide better LaTeX support"), "0.3dev", "Frank Lanitz frank@frank.uvena.de")
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
plugins-commits@lists.geany.org