summaryrefslogtreecommitdiff
path: root/src/fl_scroll_area.cxx
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2009-03-22 19:21:34 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2009-03-22 19:21:34 +0000
commitf5d5c97312eda092656cab465d2c55c27a3200ea (patch)
tree630d6548ebcd8aedf48ba043929f630ff42a9a81 /src/fl_scroll_area.cxx
parentd75f9a6b93d483bf41a33d1faad25c288cbdc560 (diff)
fixed a typo
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6712 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_scroll_area.cxx')
-rw-r--r--src/fl_scroll_area.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fl_scroll_area.cxx b/src/fl_scroll_area.cxx
index 4a361c37a..e87cba026 100644
--- a/src/fl_scroll_area.cxx
+++ b/src/fl_scroll_area.cxx
@@ -91,7 +91,7 @@ void fl_scroll(int X, int Y, int W, int H, int dx, int dy,
for (;;) {
XEvent e; XWindowEvent(fl_display, fl_window, ExposureMask, &e);
if (e.type == NoExpose) break;
- // otherwise assumme it is a GraphicsExpose event:
+ // otherwise assume it is a GraphicsExpose event:
draw_area(data, e.xexpose.x, e.xexpose.y,
e.xexpose.width, e.xexpose.height);
if (!e.xgraphicsexpose.count) break;