diff options
| author | Manolo Gouy <Manolo> | 2016-01-28 11:51:07 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-01-28 11:51:07 +0000 |
| commit | 1c3c544edf1af6884e4002f04aa28cce4a06fbec (patch) | |
| tree | 26f72eccf3d60dc04d5026df9678eec7652d33d1 /src/Fl_Window.cxx | |
| parent | e2cc1a80f09b7b33665be2ae14ef20673f9d6f7b (diff) | |
Added Fl_Window::capture_titlebar_and_borders a new private member function
that triggers a warning when FL_PORTING is ON and with a default platform-neutral
implementation.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11074 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Window.cxx')
| -rw-r--r-- | src/Fl_Window.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Fl_Window.cxx b/src/Fl_Window.cxx index 3271b4db6..e54f60d60 100644 --- a/src/Fl_Window.cxx +++ b/src/Fl_Window.cxx @@ -468,6 +468,17 @@ void Fl_Window::wait_for_expose() { Fl::wait(); } } + +#if defined(FL_PORTING) +# pragma message "FL_PORTING: implement Fl_Window::capture_titlebar_and_borders" +void capture_titlebar_and_borders(Fl_RGB_Image*& top, Fl_RGB_Image*& left, Fl_RGB_Image*& bottom, Fl_RGB_Image*& right) +{ + top = left = bottom = right = NULL; +} +#endif + +} + #endif // ! __APPLE__ // |
