diff options
| author | Manolo Gouy <Manolo> | 2011-05-23 18:01:29 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2011-05-23 18:01:29 +0000 |
| commit | ea020f0081381d674b173759664dd6297e0acea6 (patch) | |
| tree | a2a6d7d1ebbd49d2e1f12e19ec8a6f27bd2547aa /FL | |
| parent | b3f6de1f373736d9291630d9af2952be34ac927f (diff) | |
Fix STR #2640: Fl::w() and Fl::h() are documented to return the width and height of the
main screen's work area (system-occupied space excluded); Fl::screen_xywh() functions
instead compute the full width and height of a screen.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8724 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl.H | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -766,13 +766,13 @@ public: fl global screen functions declared in <FL/Fl.H> @{ */ // screen size: - /** Returns the origin of the current screen, where 0 indicates the left side of the screen. */ + /** Returns the origin of the current screen work area, where 0 indicates the left side of the screen. */ static int x(); // platform dependent - /** Returns the origin of the current screen, where 0 indicates the top edge of the screen. */ + /** Returns the origin of the current screen work area, where 0 indicates the top edge of the screen. */ static int y(); // platform dependent - /** Returns the width of the screen in pixels. */ + /** Returns the width of the screen work area in pixels. */ static int w(); // platform dependent - /** Returns the height of the screen in pixels. */ + /** Returns the height of the screen work area in pixels. */ static int h(); // platform dependent // multi-head support: |
