Fluid generates correct Fl_Int_Iput and Fl_Float_Input plus include line. STR 2476

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8019 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher 2010-12-12 20:06:04 +00:00
parent 318b3dea57
commit b239847669

View File

@ -67,6 +67,10 @@ const char* subclassname(Fl_Type* l) {
if (c) return c;
if (l->is_class()) return "Fl_Group";
if (p->o->type() == FL_WINDOW+1) return "Fl_Double_Window";
if (strcmp(p->type_name(), "Fl_Input") == 0) {
if (p->o->type() == FL_FLOAT_INPUT) return "Fl_Float_Input";
if (p->o->type() == FL_INT_INPUT) return "Fl_Int_Input";
}
}
return l->type_name();
}