summaryrefslogtreecommitdiff
path: root/documentation/subclassing.html
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/subclassing.html')
-rw-r--r--documentation/subclassing.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/subclassing.html b/documentation/subclassing.html
index 943b954eb..6df01be99 100644
--- a/documentation/subclassing.html
+++ b/documentation/subclassing.html
@@ -218,7 +218,7 @@ int MyClass::handle(int event) {
}
return 0;
default:
- return 0;
+ return Fl_Widget::handle(event);
}
}
</PRE>