Doxygen cleanups and increase DOT_GRAPH_MAX_NODES for some headers

This commit is contained in:
Vincent Sanders 2014-11-09 15:48:38 +00:00
parent e32a2ad46e
commit 87a53c3e82
2 changed files with 21 additions and 15 deletions

View File

@ -1783,7 +1783,7 @@ MSCFILE_DIRS =
# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note
# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
DOT_GRAPH_MAX_NODES = 100 DOT_GRAPH_MAX_NODES = 150
# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
# graphs generated by dot. A depth value of 3 means that only nodes reachable # graphs generated by dot. A depth value of 3 means that only nodes reachable

View File

@ -17,7 +17,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
/** \file /**
* \file
* Browser history tree implementation. * Browser history tree implementation.
*/ */
@ -84,15 +85,13 @@ struct history {
/** /**
* Clone a history entry * Clone a history entry
* *
* \param history opaque history structure, as returned by history_create() * \param history opaque history structure, as returned by history_create()
* \param start entry to clone * \param entry entry to clone
* * \return A cloned history entry or NULL on error
* \return a cloned history entry, or 0 on error
*/ */
static struct history_entry *
static struct history_entry *browser_window_history__clone_entry( browser_window_history__clone_entry(struct history *history,
struct history *history, struct history_entry *entry)
struct history_entry *entry)
{ {
struct history_entry *child; struct history_entry *child;
struct history_entry *new_child; struct history_entry *new_child;
@ -241,12 +240,19 @@ static void browser_window_history__layout(struct history *history)
/** /**
* Recursively redraw a history_entry. * Recursively redraw a history_entry.
* *
* \param history history containing the entry * \param history history containing the entry
* \param history_entry entry to render * \param entry entry to render
* \param ctx current redraw context * \param x0 area top left x coordinate
* \param y0 area top left y coordinate
* \param x1 area bottom right x coordinate
* \param y1 area bottom right y coordinate
* \param x window x offset
* \param y window y offset
* \param clip clip redraw
* \param ctx current redraw context
*/ */
static bool
static bool browser_window_history__redraw_entry(struct history *history, browser_window_history__redraw_entry(struct history *history,
struct history_entry *entry, struct history_entry *entry,
int x0, int y0, int x1, int y1, int x0, int y0, int x1, int y1,
int x, int y, bool clip, int x, int y, bool clip,