From 94e5f2e1fc5b9e6113e58c4bc494370e802f9783 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Fri, 25 Feb 2011 08:44:47 +0000 Subject: Un-inlined Fl_Window::icon() methods to make them easier to extend w/o breaking the ABI. See discussion in STR #2563. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8472 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Window.cxx | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src') 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$". -- cgit v1.2.3