summaryrefslogtreecommitdiff
path: root/frontends/gtk/corewindow.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-10-26 13:58:51 +0100
committerVincent Sanders <vince@kyllikki.org>2016-10-26 13:58:51 +0100
commit2adf0a9c44a0ebb0dc9060aa5f3e27f65e21875d (patch)
tree467d8ad210907f1f7acacaa4088bfb2a20c1b3e3 /frontends/gtk/corewindow.h
parentaf5f4a570453c2d0b1dcfd06044ad3abb3bd4325 (diff)
downloadnetsurf-2adf0a9c44a0ebb0dc9060aa5f3e27f65e21875d.tar.gz
netsurf-2adf0a9c44a0ebb0dc9060aa5f3e27f65e21875d.tar.bz2
clean up documentation of GTK core window interfaces
Diffstat (limited to 'frontends/gtk/corewindow.h')
-rw-r--r--frontends/gtk/corewindow.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/gtk/corewindow.h b/frontends/gtk/corewindow.h
index cfb865edc..90bfd6193 100644
--- a/frontends/gtk/corewindow.h
+++ b/frontends/gtk/corewindow.h
@@ -58,7 +58,7 @@ struct nsgtk_corewindow {
*
* \param nsgtk_cw The nsgtk core window structure.
* \param r The rectangle of the window that needs updating.
- * \return NSERROR_OK on success otherwise apropriate error code
+ * \return NSERROR_OK on success otherwise appropriate error code
*/
nserror (*draw)(struct nsgtk_corewindow *nsgtk_cw, struct rect *r);
@@ -69,7 +69,7 @@ struct nsgtk_corewindow {
* \param nskey The netsurf key code.
* \return NSERROR_OK if key processed,
* NSERROR_NOT_IMPLEMENTED if key not processed
- * otherwise apropriate error code
+ * otherwise appropriate error code
*/
nserror (*key)(struct nsgtk_corewindow *nsgtk_cw, uint32_t nskey);
@@ -80,7 +80,7 @@ struct nsgtk_corewindow {
* \param mouse_state mouse state
* \param x location of event
* \param y location of event
- * \return NSERROR_OK on sucess otherwise apropriate error code.
+ * \return NSERROR_OK on success otherwise appropriate error code.
*/
nserror (*mouse)(struct nsgtk_corewindow *nsgtk_cw, browser_mouse_state mouse_state, int x, int y);
};