Fix doxygen-1.4.6 warnings about undocumented function parameters

when using documentation comments e.g. for TODO.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2600 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2008-05-19 12:40:35 +00:00
parent d99a4ea675
commit 45dfa2e9fe
3 changed files with 5 additions and 2 deletions

View File

@ -21,6 +21,9 @@
check for any missing field initializers.
Rename plugin macro p_encoding to p_encodings to follow the core
function encodings_ prefix.
* src/msgwindow.c, src/editor.c:
Fix doxygen-1.4.6 warnings about undocumented function parameters
when using documentation comments e.g. for TODO.
2008-05-18 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>

View File

@ -2716,7 +2716,7 @@ void editor_auto_line_indentation(gint idx, gint pos)
}
/* set cursor position if there was no selection */
/** TODO implement selection handling if there was a selection */
/* TODO: implement selection handling if there was a selection */
if (first_sel_start == first_sel_end)
sci_set_current_position(doc_list[idx].sci,
pos - (sel_end - sel_start) + strlen(indent), FALSE);

View File

@ -302,7 +302,7 @@ void msgwin_msg_add(gint msg_color, gint line, gint idx, const gchar *string)
/* work around a strange problem when adding very long lines(greater than 4000 bytes)
* cut the string to a maximum of 1024 bytes and discard the rest */
/** TODO find the real cause for the display problem / if it is GtkTreeView file a bug report */
/* TODO: find the real cause for the display problem / if it is GtkTreeView file a bug report */
if (strlen(string) > 1024)
tmp = g_strndup(string, 1024);
else