diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_Window.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Fl_Window.cxx b/src/Fl_Window.cxx index f2509a432..b5863b7db 100644 --- a/src/Fl_Window.cxx +++ b/src/Fl_Window.cxx @@ -277,6 +277,16 @@ const char *Fl_Window::xclass() const } } +/** Gets the current icon window target dependent data. */ +const void *Fl_Window::icon() const { + return icon_; +} + +/** Sets the current icon window target dependent data. */ +void Fl_Window::icon(const void * ic) { + icon_ = ic; +} + // // End of "$Id$". |
