summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-02-19 20:05:16 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-02-19 20:05:16 +0000
commit4cc4f6dffcf9f529c1bae0bda82f2e5f3f5e81fc (patch)
tree3263dad0dcda96291fa8a691a2e0c7aee5d05b2e /desktop
parent0ca3e6e00e831302e34c2d96a1aaf56663c7e1e4 (diff)
downloadnetsurf-4cc4f6dffcf9f529c1bae0bda82f2e5f3f5e81fc.tar.gz
netsurf-4cc4f6dffcf9f529c1bae0bda82f2e5f3f5e81fc.tar.bz2
Update comments.
svn path=/trunk/netsurf/; revision=11714
Diffstat (limited to 'desktop')
-rw-r--r--desktop/shape.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/shape.h b/desktop/shape.h
index c322602b9..5baf629b6 100644
--- a/desktop/shape.h
+++ b/desktop/shape.h
@@ -17,7 +17,7 @@
*/
/** \file
- * Core mouse state.
+ * Core shapes.
*/
#ifndef _NETSURF_DESKTOP_SHAPE_H_
@@ -25,8 +25,8 @@
/* Rectangle coordinates */
struct rect {
- int x0, y0;
- int x1, y1;
+ int x0, y0; /* Top left */
+ int x1, y1; /* Bottom right */
};
#endif