Rename FL/Fl_String.H to FL/Fl_String_class.H

The previous name existed already with different case (fl_string.h)
in the FL folder which broke the build on macOS and Windows.

This may be a temporary fix - until I find a better way.
This commit is contained in:
Albrecht Schlosser
2021-12-04 15:34:41 +01:00
parent b6de09cff2
commit 7a7e50df6e
6 changed files with 70 additions and 58 deletions
+4 -4
View File
@@ -14,10 +14,10 @@
// https://www.fltk.org/bugs.php
//
#ifndef _FL_FL_STRING_H_
#define _FL_FL_STRING_H_
#ifndef _FL_Fl_String_class_H_
#define _FL_Fl_String_class_H_
/** \file FL/Fl_String.H
/** \file FL/Fl_String_class.H
Basic Fl_String class for FLTK.
*/
@@ -111,4 +111,4 @@ public:
}; // class Fl_String
#endif // _FL_FL_STRING_H_
#endif // _FL_Fl_String_class_H_
+1 -1
View File
@@ -22,7 +22,7 @@
#define _FL_fl_ask_H_
#include <FL/Enumerations.H>
#include <FL/Fl_String.H>
#include <FL/Fl_String_class.H>
#include <FL/fl_attr.h>
class Fl_Widget;