Fluid: replace 'FL_WINDOW+1' with 'FL_DOUBLE_WINDOW'

Note: 'FL_DOUBLE_WINDOW' *is* currently defined as 'FL_WINDOW+1'.
  This commit doesn't change real code but prevents potential bugs
  in the future if one of these constants would be changed.
This commit is contained in:
Albrecht Schlosser 2024-10-24 17:56:51 +02:00
parent 1fbcbee107
commit eb545c981b
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
// //
// Widget type code for the Fast Light Tool Kit (FLTK). // Widget type code for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2023 by Bill Spitzak and others. // Copyright 1998-2024 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this // the file "COPYING" which should have been included with this file. If this
@ -64,7 +64,7 @@ const char* subclassname(Fl_Type* l) {
const char* c = p->subclass(); const char* c = p->subclass();
if (c) return c; if (c) return c;
if (l->is_class()) return "Fl_Group"; if (l->is_class()) return "Fl_Group";
if (p->o->type() == FL_WINDOW+1) return "Fl_Double_Window"; if (p->o->type() == FL_DOUBLE_WINDOW) return "Fl_Double_Window";
if (p->id() == ID_Input) { if (p->id() == ID_Input) {
if (p->o->type() == FL_FLOAT_INPUT) return "Fl_Float_Input"; if (p->o->type() == FL_FLOAT_INPUT) return "Fl_Float_Input";
if (p->o->type() == FL_INT_INPUT) return "Fl_Int_Input"; if (p->o->type() == FL_INT_INPUT) return "Fl_Int_Input";

View File

@ -108,7 +108,7 @@ void show_settings_cb(Fl_Widget *, void *) {
Fl_Menu_Item window_type_menu[] = { Fl_Menu_Item window_type_menu[] = {
{"Single",0,0,(void*)FL_WINDOW}, {"Single",0,0,(void*)FL_WINDOW},
{"Double",0,0,(void*)(FL_WINDOW+1)}, {"Double",0,0,(void*)(FL_DOUBLE_WINDOW)},
{0}}; {0}};
static int overlays_invisible; static int overlays_invisible;