Revision: 5776 http://geany.svn.sourceforge.net/geany/?rev=5776&view=rev Author: colombanw Date: 2011-05-09 17:35:09 +0000 (Mon, 09 May 2011)
Log Message: ----------- Add missing documentation to some plugin API functions
Modified Paths: -------------- branches/0.20.1/src/sciwrappers.c
Modified: branches/0.20.1/src/sciwrappers.c =================================================================== --- branches/0.20.1/src/sciwrappers.c 2011-05-09 13:22:02 UTC (rev 5775) +++ branches/0.20.1/src/sciwrappers.c 2011-05-09 17:35:09 UTC (rev 5776) @@ -450,6 +450,9 @@ }
+/** Gets the position at the end of a line + * @param sci Scintilla widget + * @param line Line */ gint sci_get_line_end_position(ScintillaObject *sci, gint line) { return SSM(sci, SCI_GETLINEENDPOSITION, line, 0); @@ -823,6 +826,10 @@ }
+/** Sets the font for a particular style + * @param style The style + * @param font The font name + * @param size The font size */ void sci_set_font(ScintillaObject *sci, gint style, const gchar *font, gint size) { SSM(sci, SCI_STYLESETFONT, style, (sptr_t) font);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.