From 45dfa2e9fecd9ba519807915e8acd1f8bf074dae Mon Sep 17 00:00:00 2001 From: Nick Treleaven Date: Mon, 19 May 2008 12:40:35 +0000 Subject: [PATCH] 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 --- ChangeLog | 3 +++ src/editor.c | 2 +- src/msgwindow.c | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 62ec6d01..c9d59ee3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/src/editor.c b/src/editor.c index 4c2cd7ba..f1a74a61 100644 --- a/src/editor.c +++ b/src/editor.c @@ -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); diff --git a/src/msgwindow.c b/src/msgwindow.c index bdeaaea7..5a3c57bb 100644 --- a/src/msgwindow.c +++ b/src/msgwindow.c @@ -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