diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2018-03-02 20:03:04 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2018-03-02 20:03:04 +0000 |
| commit | 42555053a11cff99d49876cb373806fd9708ad8b (patch) | |
| tree | 401e4f99bedeef5cd7f68d09a766ef0f9570dd6e /FL/Fl_Window_Driver.H | |
| parent | b2da1fcbaf0b0eebfbc29f22bf47e59a7ee0168e (diff) | |
More Android changes.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12699 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Window_Driver.H')
| -rw-r--r-- | FL/Fl_Window_Driver.H | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FL/Fl_Window_Driver.H b/FL/Fl_Window_Driver.H index c1d52ab59..09bd098f4 100644 --- a/FL/Fl_Window_Driver.H +++ b/FL/Fl_Window_Driver.H @@ -116,8 +116,8 @@ public: void resize_after_scale_change(int ns, float old_f, float new_f); // --- window data - virtual int decorated_w() = 0; - virtual int decorated_h() = 0; + virtual int decorated_w() { return w(); } // default, should be overidden by driver + virtual int decorated_h() { return h(); } // --- window management virtual void take_focus(); |
