Add gtk-doc style comment

This commit is contained in:
David Boddie
2019-07-31 19:23:15 +02:00
parent 016c1086e6
commit f53babcd68

View File

@ -1236,10 +1236,15 @@ find_key_by_position_section_callback (EekElement *element,
return data->key ? 0 : -1;
}
/*
Returns the key located at the position x, y in widget coordinates, or
NULL if no key can be found at that location.
*/
/**
* eek_renderer_find_key_by_position:
* @renderer: The renderer normally used to render the key
* @x: The horizontal widget coordinate of the position to test for a key
* @y: The vertical widget coordinate of the position to test for a key
*
* Return value: the key located at the position x, y in widget coordinates, or
* NULL if no key can be found at that location
**/
EekKey *
eek_renderer_find_key_by_position (EekRenderer *renderer,
gdouble x,