FLUID didn't add xclass() calls to windows (STR #718)

fluid/Fl_Window_Type.cxx:
    - Fl_Window_Type::write_code2() - now write xclass() code when
      xclass is set.


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4005 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet
2005-02-02 13:48:08 +00:00
parent e4ccb4ac07
commit 18b1a2fdca
2 changed files with 8 additions and 2 deletions
+1
View File
@@ -1,5 +1,6 @@
CHANGES IN FLTK 1.1.7
- FLUID didn't add xclass() calls to windows (STR #718)
- The X11 DND code did not correctly select a text
format for incoming data (STR #711)
- Fixes to Fl_JPEG_Image error handler.
+7 -2
View File
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Window_Type.cxx,v 1.13.2.10.2.10 2004/11/20 15:42:24 easysw Exp $"
// "$Id$"
//
// Window type code for the Fast Light Tool Kit (FLTK).
//
@@ -751,6 +751,11 @@ void Fl_Window_Type::write_code2() {
if (modal) write_c("%so->set_modal();\n", indent());
else if (non_modal) write_c("%so->set_non_modal();\n", indent());
if (!((Fl_Window*)o)->border()) write_c("%so->clear_border();\n", indent());
if (xclass) {
write_c("%so->xclass(", indent());
write_cstring(xclass);
write_c(");\n");
}
write_c("%so->end();\n", indent());
if (((Fl_Window*)o)->resizable() == o)
write_c("%so->resizable(o);\n", indent());
@@ -807,5 +812,5 @@ int Fl_Window_Type::read_fdesign(const char* propname, const char* value) {
}
//
// End of "$Id: Fl_Window_Type.cxx,v 1.13.2.10.2.10 2004/11/20 15:42:24 easysw Exp $".
// End of "$Id$".
//