Revision: 55 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=55&view=rev Author: yurand Date: 2008-05-29 03:26:44 -0700 (Thu, 29 May 2008)
Log Message: ----------- Warning fixes
Modified Paths: -------------- trunk/geanydoc/src/config.c trunk/geanydoc/src/geanydoc.c
Modified: trunk/geanydoc/src/config.c =================================================================== --- trunk/geanydoc/src/config.c 2008-05-29 10:11:28 UTC (rev 54) +++ trunk/geanydoc/src/config.c 2008-05-29 10:26:44 UTC (rev 55) @@ -22,6 +22,8 @@ * along with this program. If not, see http://www.gnu.org/licenses/. */
+#include <string.h> + #include "geany.h" #include "support.h" #include "plugindata.h"
Modified: trunk/geanydoc/src/geanydoc.c =================================================================== --- trunk/geanydoc/src/geanydoc.c 2008-05-29 10:11:28 UTC (rev 54) +++ trunk/geanydoc/src/geanydoc.c 2008-05-29 10:26:44 UTC (rev 55) @@ -23,6 +23,7 @@ */
#include <gtk/gtk.h> +#include <string.h>
#ifdef HAVE_CONFIG_H #include "config.h" @@ -54,8 +55,8 @@ * for binary compatibility. */ PLUGIN_VERSION_CHECK(60) /* All plugins must set name, description, version and author. */ - PLUGIN_INFO(_("Doc"), _("Call documentation viewer on current symbol."), VERSION, - _("Yura Siamshka yurand2@gmail.com")); + PLUGIN_SET_INFO(_("Doc"), _("Call documentation viewer on current symbol."), VERSION, + _("Yura Siamshka yurand2@gmail.com"));
/* Keybinding(s) */ enum
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
plugins-commits@lists.geany.org