SF.net SVN: geany: [2340] trunk
ntrel at users.sourceforge.net
ntrel at xxxxx
Thu Mar 13 17:53:03 UTC 2008
Revision: 2340
http://geany.svn.sourceforge.net/geany/?rev=2340&view=rev
Author: ntrel
Date: 2008-03-13 10:53:03 -0700 (Thu, 13 Mar 2008)
Log Message:
-----------
Fix Doxygen undocumented parameter warnings.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/document.c
trunk/src/utils.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-03-13 17:12:18 UTC (rev 2339)
+++ trunk/ChangeLog 2008-03-13 17:53:03 UTC (rev 2340)
@@ -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 <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/src/document.c
===================================================================
--- trunk/src/document.c 2008-03-13 17:12:18 UTC (rev 2339)
+++ trunk/src/document.c 2008-03-13 17:53:03 UTC (rev 2340)
@@ -1818,7 +1818,7 @@
/* 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
Modified: trunk/src/utils.c
===================================================================
--- trunk/src/utils.c 2008-03-13 17:12:18 UTC (rev 2339)
+++ trunk/src/utils.c 2008-03-13 17:53:03 UTC (rev 2340)
@@ -332,7 +332,7 @@
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 @@
/* 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;
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