SF.net SVN: geany: [2600] trunk
ntrel at users.sourceforge.net
ntrel at xxxxx
Mon May 19 12:40:37 UTC 2008
Revision: 2600
http://geany.svn.sourceforge.net/geany/?rev=2600&view=rev
Author: ntrel
Date: 2008-05-19 05:40:35 -0700 (Mon, 19 May 2008)
Log Message:
-----------
Fix doxygen-1.4.6 warnings about undocumented function parameters
when using documentation comments e.g. for TODO.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/editor.c
trunk/src/msgwindow.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-05-19 12:35:35 UTC (rev 2599)
+++ trunk/ChangeLog 2008-05-19 12:40:35 UTC (rev 2600)
@@ -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>
Modified: trunk/src/editor.c
===================================================================
--- trunk/src/editor.c 2008-05-19 12:35:35 UTC (rev 2599)
+++ trunk/src/editor.c 2008-05-19 12:40:35 UTC (rev 2600)
@@ -2716,7 +2716,7 @@
}
/* 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);
Modified: trunk/src/msgwindow.c
===================================================================
--- trunk/src/msgwindow.c 2008-05-19 12:35:35 UTC (rev 2599)
+++ trunk/src/msgwindow.c 2008-05-19 12:40:35 UTC (rev 2600)
@@ -302,7 +302,7 @@
/* 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
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list