diff --git a/ChangeLog b/ChangeLog index de713cd08..f963144d7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,8 @@ * src/keybindings.c, src/keybindings.h, src/plugins.c, doc/plugins.dox: Check plugin keybinding group name is valid. Ignore plugin keybinding groups with no elements defined. + * src/utils.c, src/document.c: + Fix Doxygen undocumented parameter warnings. 2008-03-13 Enrico Tröger diff --git a/src/document.c b/src/document.c index cbbfcc011..c18b3794a 100644 --- a/src/document.c +++ b/src/document.c @@ -1818,7 +1818,7 @@ void document_replace_sel(gint idx, const gchar *find_text, const gchar *replace /* Note: the selection will be wrapped to last_line + 1 if max_column is greater than * the highest column on the last line. The wrapped selection is completely different * from the original one, so skip the selection at all */ - /** TODO is there a better way to handle the wrapped selection? */ + /* TODO is there a better way to handle the wrapped selection? */ if ((sci_get_line_length(doc_list[idx].sci, last_line) - 1) >= max_column) { /* for keeping and adjusting the selection in multi line rectangle selection we * need the last line of the original selection and the greatest column number after diff --git a/src/utils.c b/src/utils.c index d5406d7b8..20ac3e03d 100644 --- a/src/utils.c +++ b/src/utils.c @@ -332,7 +332,7 @@ gboolean utils_check_disk_status(gint idx, gboolean force) locale_filename = utils_get_locale_from_utf8(doc_list[idx].file_name); if (g_stat(locale_filename, &st) != 0) { - /** TODO: warn user file on disk is missing */ + /* TODO: warn user file on disk is missing */ } else if (doc_list[idx].mtime > t || st.st_mtime > t) { @@ -1734,7 +1734,7 @@ gboolean utils_str_has_upper(const gchar *str) /* check only letters and stop once the first non-capital was found */ if (g_unichar_isalpha(c) && g_unichar_isupper(c)) return TRUE; - /** FIXME don't write a const string */ + /* FIXME don't write a const string */ str = g_utf8_next_char(str); } return FALSE;