mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-18 18:23:25 +03:00
fix some doxygen errors
This commit is contained in:
parent
07c8ea22a5
commit
d9a2c7b9c1
@ -118,7 +118,7 @@
|
||||
/**
|
||||
* cookie entry.
|
||||
*
|
||||
* \warn This *must* be kept in sync with the public interface in
|
||||
* \warning This *must* be kept in sync with the public interface in
|
||||
* netsurf/cookie_db.h
|
||||
*/
|
||||
struct cookie_internal_data {
|
||||
|
@ -609,7 +609,7 @@ knockout_plot_line(const struct redraw_context *ctx,
|
||||
* rule.
|
||||
*
|
||||
* \param ctx The current redraw context.
|
||||
* \param style Style controlling the polygon plot.
|
||||
* \param pstyle Style controlling the polygon plot.
|
||||
* \param p verticies of polygon
|
||||
* \param n number of verticies.
|
||||
* \return NSERROR_OK on success else error code.
|
||||
|
@ -637,9 +637,9 @@ static bool save_complete_handle_attr_value(save_complete_ctx *ctx,
|
||||
*
|
||||
* Attribute: Elements:
|
||||
*
|
||||
* 1) data <object>
|
||||
* 2) href <a> <area> <link>
|
||||
* 3) src <script> <input> <frame> <iframe> <img>
|
||||
* 1) data object
|
||||
* 2) href a, area, link
|
||||
* 3) src script, input, frame, iframe, img
|
||||
* 4) background any (except those above)
|
||||
*/
|
||||
/* 1 */
|
||||
|
@ -41,7 +41,16 @@
|
||||
#define ALPHA_OFFSET (3)
|
||||
|
||||
static CGImageRef cocoa_prepare_bitmap( void *bitmap );
|
||||
static NSMapTable *cocoa_get_bitmap_cache( void );
|
||||
//static NSMapTable *cocoa_get_bitmap_cache( void );
|
||||
|
||||
static inline NSMapTable *cocoa_get_bitmap_cache( void )
|
||||
{
|
||||
static NSMapTable *cache = nil;
|
||||
if (cache == nil) {
|
||||
cache = NSCreateMapTable( NSNonOwnedPointerMapKeyCallBacks, NSNonOwnedPointerMapValueCallBacks, 0 );
|
||||
}
|
||||
return cache;
|
||||
}
|
||||
|
||||
static int bitmap_get_width(void *bitmap)
|
||||
{
|
||||
@ -179,14 +188,6 @@ CGImageRef cocoa_get_cgimage( void *bitmap )
|
||||
return result;
|
||||
}
|
||||
|
||||
static inline NSMapTable *cocoa_get_bitmap_cache( void )
|
||||
{
|
||||
static NSMapTable *cache = nil;
|
||||
if (cache == nil) {
|
||||
cache = NSCreateMapTable( NSNonOwnedPointerMapKeyCallBacks, NSNonOwnedPointerMapValueCallBacks, 0 );
|
||||
}
|
||||
return cache;
|
||||
}
|
||||
|
||||
static CGImageRef cocoa_prepare_bitmap( void *bitmap )
|
||||
{
|
||||
|
@ -17,7 +17,8 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* \file Fetch operation implementation for win32
|
||||
* \file
|
||||
* Fetch operation implementation for win32
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
|
@ -88,7 +88,7 @@ struct html_script {
|
||||
};
|
||||
|
||||
|
||||
/** An object (<img>, <object>, etc.) in a CONTENT_HTML document. */
|
||||
/** An object (img, object, etc. tag) in a CONTENT_HTML document. */
|
||||
struct content_html_object {
|
||||
struct content *parent; /**< Parent document */
|
||||
struct content_html_object *next; /**< Next in chain */
|
||||
@ -105,7 +105,7 @@ struct html_scrollbar_data {
|
||||
struct box *box;
|
||||
};
|
||||
|
||||
/** Frame tree (<frameset>, <frame>) */
|
||||
/** Frame tree (frameset or frame tag) */
|
||||
struct content_html_frames {
|
||||
int cols; /** number of columns in frameset */
|
||||
int rows; /** number of rows in frameset */
|
||||
@ -126,7 +126,7 @@ struct content_html_frames {
|
||||
struct content_html_frames *children; /** [cols * rows] children */
|
||||
};
|
||||
|
||||
/** Inline frame list (<iframe>) */
|
||||
/** Inline frame list (iframe tag) */
|
||||
struct content_html_iframe {
|
||||
struct box *box;
|
||||
|
||||
|
@ -567,6 +567,10 @@ static bool html_redraw_file(int x, int y, int width, int height,
|
||||
/**
|
||||
* Plot background images.
|
||||
*
|
||||
* The reason for the presence of \a background is the backwards compatibility
|
||||
* mess that is backgrounds on <body>. The background will be drawn relative
|
||||
* to \a box, using the background information contained within \a background.
|
||||
*
|
||||
* \param x coordinate of box
|
||||
* \param y coordinate of box
|
||||
* \param box box to draw background image of
|
||||
@ -576,10 +580,6 @@ static bool html_redraw_file(int x, int y, int width, int height,
|
||||
* \param background box containing background details (usually \a box)
|
||||
* \param ctx current redraw context
|
||||
* \return true if successful, false otherwise
|
||||
*
|
||||
* The reason for the presence of ::background is the backwards compatibility
|
||||
* mess that is backgrounds on <body>. The background will be drawn relative
|
||||
* to \a box, using the background information contained within \a background.
|
||||
*/
|
||||
|
||||
static bool html_redraw_background(int x, int y, struct box *box, float scale,
|
||||
|
Loading…
Reference in New Issue
Block a user