summaryrefslogtreecommitdiff
path: root/fluid/nodes/Grid_Node.h
diff options
context:
space:
mode:
authormaxim nikonov <maxim.nikonov@hqo.co>2026-02-05 23:48:25 +0500
committermaxim nikonov <maxim.nikonov@hqo.co>2026-02-05 23:48:25 +0500
commitc53067d2f6cfd6e3c6b476c51ab8c4b931e40a30 (patch)
tree95bfab59b2d9a38a57b6aa05244cab2d0435c7d2 /fluid/nodes/Grid_Node.h
parent57860e277f2298ad6c0830b1492087cfa124c862 (diff)
wip
Diffstat (limited to 'fluid/nodes/Grid_Node.h')
-rw-r--r--fluid/nodes/Grid_Node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fluid/nodes/Grid_Node.h b/fluid/nodes/Grid_Node.h
index 4363164ee..706791d98 100644
--- a/fluid/nodes/Grid_Node.h
+++ b/fluid/nodes/Grid_Node.h
@@ -55,8 +55,8 @@ public:
const char *alt_type_name() override {return "fltk::GridGroup";}
Widget_Node *_make() override { return new Grid_Node(); }
Fl_Widget *widget(int X,int Y,int W,int H) override;
- Type type() const override { return Type::Grid; }
- bool is_a(Type inType) const override { return (inType==Type::Grid) ? true : super::is_a(inType); }
+ Type type() const override { return FLD_NODE_TYPE_Grid; }
+ bool is_a(Type inType) const override { return (inType==FLD_NODE_TYPE_Grid) ? true : super::is_a(inType); }
void write_properties(fld::io::Project_Writer &f) override;
void read_property(fld::io::Project_Reader &f, const char *) override;
void write_parent_properties(fld::io::Project_Writer &f, Node *child, bool encapsulate) override;