Fix MSVC compiler warning

warning C4099: 'Fl_Menu_Item': type name first seen using 'struct'
  now seen using 'class'
This commit is contained in:
Albrecht Schlosser
2022-03-05 16:05:31 +01:00
parent 5ebb76050b
commit 272bc2560c
+1 -1
View File
@@ -118,7 +118,7 @@ public:
// each vertical menu has one of these:
class menuwindow : public Fl_Menu_Window {
friend class Fl_Window_Driver;
friend class Fl_Menu_Item;
friend struct Fl_Menu_Item;
void draw();
void drawentry(const Fl_Menu_Item*, int i, int erase);
int handle_part1(int);