Don't open the display to load a .fl file.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2187 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet
2002-05-03 14:33:00 +00:00
parent 5122f3b6f3
commit 2f9a58d608
2 changed files with 8 additions and 3 deletions
+3
View File
@@ -3,6 +3,9 @@ CHANGES IN FLTK 1.1.0rc2
- Wide arcs would draw with "teeth". - Wide arcs would draw with "teeth".
- The preferences demo included Fl/Fl_Preferences.H - The preferences demo included Fl/Fl_Preferences.H
instead of FL/Fl_Preferences.H. instead of FL/Fl_Preferences.H.
- Fl_File_Chooser.cxx defined the file chooser functions
again; they should only be defined in the header file.
- FLUID was opening the display when it shouldn't have.
CHANGES IN FLTK 1.1.0rc1 CHANGES IN FLTK 1.1.0rc1
+5 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Window_Type.cxx,v 1.13.2.10.2.3 2002/05/01 19:17:24 easysw Exp $" // "$Id: Fl_Window_Type.cxx,v 1.13.2.10.2.4 2002/05/03 14:33:00 easysw Exp $"
// //
// Window type code for the Fast Light Tool Kit (FLTK). // Window type code for the Fast Light Tool Kit (FLTK).
// //
@@ -251,8 +251,10 @@ Fl_Type *Fl_Window_Type::make() {
this->o = new Fl_Window(100,100); this->o = new Fl_Window(100,100);
Fl_Group::current(0); Fl_Group::current(0);
} }
// Set the size ranges for this window; in order to avoid opening the
// X display we use an arbitrary maximum size...
((Fl_Window *)(this->o))->size_range(gridx * snap, gridy * snap, ((Fl_Window *)(this->o))->size_range(gridx * snap, gridy * snap,
Fl::w(), Fl::h(), 3072, 2048,
gridx * snap, gridy * snap, 0); gridx * snap, gridy * snap, 0);
myo->factory = this; myo->factory = this;
myo->drag = 0; myo->drag = 0;
@@ -790,5 +792,5 @@ int Fl_Window_Type::read_fdesign(const char* name, const char* value) {
} }
// //
// End of "$Id: Fl_Window_Type.cxx,v 1.13.2.10.2.3 2002/05/01 19:17:24 easysw Exp $". // End of "$Id: Fl_Window_Type.cxx,v 1.13.2.10.2.4 2002/05/03 14:33:00 easysw Exp $".
// //