summaryrefslogtreecommitdiff
path: root/FL/Fl.H
diff options
context:
space:
mode:
authormaxim nikonov <maxim.nikonov@hqo.co>2026-02-06 03:39:53 +0500
committermaxim nikonov <maxim.nikonov@hqo.co>2026-02-06 03:39:53 +0500
commitf93978aba486bf0fea8d9ee857d014a02f3f7d96 (patch)
tree44d4626c2d56666056983d8fedf1b897f4ecf249 /FL/Fl.H
parentddba971ebb304512ba9e0a01b77ec71b59b977b6 (diff)
wi[
Diffstat (limited to 'FL/Fl.H')
-rw-r--r--FL/Fl.H12
1 files changed, 6 insertions, 6 deletions
diff --git a/FL/Fl.H b/FL/Fl.H
index dd5958750..31d230da6 100644
--- a/FL/Fl.H
+++ b/FL/Fl.H
@@ -276,7 +276,7 @@ FL_EXPORT extern void flush();
The default version on all other platforms prints the warning message to stderr.
- You can override the behavior by setting the function pointer to your
+ You can the behavior by setting the function pointer to your
own routine.
Fl::warning() means that there was a recoverable problem, the display may
@@ -294,7 +294,7 @@ FL_EXPORT extern void (*warning)(const char*, ...);
The default version on all other platforms prints the error message to stderr.
- You can override the behavior by setting the function pointer to your
+ You can the behavior by setting the function pointer to your
own routine.
Fl::error() means there is a recoverable error such as the inability to read
@@ -310,7 +310,7 @@ FL_EXPORT extern void (*error)(const char*, ...);
The default version on all other platforms prints the error message to stderr.
- You can override the behavior by setting the function pointer to your
+ You can the behavior by setting the function pointer to your
own routine.
Fl::fatal() must not return, as FLTK is in an unusable state, however your
@@ -338,7 +338,7 @@ FL_EXPORT extern Fl_Window* next_window(const Fl_Window*);
if there are no modal() windows shown().
The modal() window has its handle() method called
for all events, and no other windows will have handle()
- called (grab() overrides this).
+ called (grab() s this).
*/
FL_EXPORT inline Fl_Window* modal() {return modal_;}
@@ -355,13 +355,13 @@ FL_EXPORT inline Fl_Window* grab() {return grab_;}
Send all events to the passed window no matter where the pointer or
focus is (including in other programs). The window <I>does not have
to be shown()</I> , this lets the handle() method of a
- "dummy" window override all event handling and allows you to
+ "dummy" window all event handling and allows you to
map and unmap a complex set of windows (under both X and Windows
<I>some</I> window must be mapped because the system interface needs a
window id).
If grab() is on it will also affect show() of windows by doing
- system-specific operations (on X it turns on override-redirect).
+ system-specific operations (on X it turns on -redirect).
These are designed to make menus popup reliably
and faster on the system.