Add missing documentation to some plugin API functions

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5553 ea778897-0a13-0410-b9d1-a72fbfd435f5
master
Colomban Wendling 2011-03-02 21:08:51 +00:00
parent 84da9b961b
commit 77e400d1aa
1 changed files with 7 additions and 0 deletions

View File

@ -450,6 +450,9 @@ void sci_set_selection(ScintillaObject *sci, gint anchorPos, gint currentPos)
}
/** 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 @@ gint sci_find_text(ScintillaObject *sci, gint flags, struct Sci_TextToFind *ttf)
}
/** 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);