diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-10-19 23:54:31 +0200 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2023-10-19 23:54:37 +0200 |
| commit | ea88888f768b1bbec2300eea93029bec67ad2f43 (patch) | |
| tree | d0120b8f88a48a342616b7aedcf05aeb326f56ce /fluid/Fl_Function_Type.h | |
| parent | 450248d20e8827665a901a02c344ad435aea336d (diff) | |
FLUID typos, comments, superfluous code
Diffstat (limited to 'fluid/Fl_Function_Type.h')
| -rw-r--r-- | fluid/Fl_Function_Type.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fluid/Fl_Function_Type.h b/fluid/Fl_Function_Type.h index 1af161374..478606b43 100644 --- a/fluid/Fl_Function_Type.h +++ b/fluid/Fl_Function_Type.h @@ -34,7 +34,7 @@ #include <stdarg.h> #include <stdlib.h> -extern Fl_Class_Type *current_class; +extern class Fl_Class_Type *current_class; int has_toplevel_function(const char *rtype, const char *sig); @@ -89,7 +89,6 @@ public: void open() FL_OVERRIDE; const char *type_name() FL_OVERRIDE {return "code";} int is_code_block() const FL_OVERRIDE {return 0;} - int is_code() const FL_OVERRIDE {return 1;} ID id() const FL_OVERRIDE { return ID_Code; } bool is_a(ID inID) const FL_OVERRIDE { return (inID==ID_Code) ? true : super::is_a(inID); } int is_public() const FL_OVERRIDE { return -1; } @@ -249,7 +248,6 @@ public: // class prefix attribute access void prefix(const char* p); const char* prefix() const {return class_prefix;} - int has_function(const char*, const char*) const; }; #endif // _FLUID_FL_FUNCTION_TYPE_H |
