DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2563
Version: 1.3-feature


Attached file "fltk-1.3.x-hide-icon2.patch"...


Link: http://www.fltk.org/str.php?L2563
Version: 1.3-feature
Index: src/Fl_Window.cxx
===================================================================
--- src/Fl_Window.cxx   (revision 8462)
+++ src/Fl_Window.cxx   (working copy)
@@ -277,7 +277,19 @@
   }
 }
 
+/** 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$".
 //
Index: FL/Fl_Window.H
===================================================================
--- FL/Fl_Window.H      (revision 8462)
+++ FL/Fl_Window.H      (working copy)
@@ -330,10 +330,8 @@
   static const char *default_xclass();
   const char* xclass() const;
   void xclass(const char* c);
-  /** Gets the current icon window target dependent data. */
-  const void* icon() const     {return icon_;}
-  /** Sets the current icon window target dependent data. */
-  void icon(const void * ic)   {icon_ = ic;}
+  const void* icon() const;
+  void icon(const void * ic);
 
   /**
     Returns non-zero if show() has been called (but not hide()
_______________________________________________
fltk-dev mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-dev

Reply via email to