diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-10-31 19:33:42 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2023-10-31 19:33:50 +0100 |
| commit | 4b02c3614971f9334514e3f37cc27686c6485e2b (patch) | |
| tree | fe6855bede5bee66366c1dc7c20939a0c62949dc /fluid/Fl_Widget_Type.cxx | |
| parent | bcc6de53322fc53bf99885f352fd6229d7e713d1 (diff) | |
FLUID: Disables MergeBack.
I decided to disable MergeBack for now. During testing,
some issues could not be resolved, and focus should
be on V1.4.
Diffstat (limited to 'fluid/Fl_Widget_Type.cxx')
| -rw-r--r-- | fluid/Fl_Widget_Type.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fluid/Fl_Widget_Type.cxx b/fluid/Fl_Widget_Type.cxx index f4e33232c..4c7617597 100644 --- a/fluid/Fl_Widget_Type.cxx +++ b/fluid/Fl_Widget_Type.cxx @@ -2848,7 +2848,7 @@ void Fl_Widget_Type::write_static(Fd_Code_Writer& f) { f.write_c(", %s", ut); if (use_v) f.write_c(" v"); f.write_c(") {\n"); - f.tag(FD_TAG_GENERIC, 0); + // Matt: disabled f.tag(FD_TAG_GENERIC, 0); f.write_c_indented(callback(), 1, 0); if (*(d-1) != ';' && *(d-1) != '}') { const char *p = strrchr(callback(), '\n'); @@ -2859,7 +2859,7 @@ void Fl_Widget_Type::write_static(Fd_Code_Writer& f) { if (*p != '#' && *p) f.write_c(";"); } f.write_c("\n"); - f.tag(FD_TAG_WIDGET_CALLBACK, get_uid()); + // Matt: disabled f.tag(FD_TAG_WIDGET_CALLBACK, get_uid()); f.write_c("}\n"); if (k) { f.write_c("void %s::%s(%s* o, %s v) {\n", k, cn, t, ut); |
