summaryrefslogtreecommitdiff
path: root/fluid/nodes/Fl_Type.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2025-03-07 19:52:54 +0100
committerMatthias Melcher <github@matthiasm.com>2025-03-07 19:52:54 +0100
commit70e5dc23aee51fc2fe67c73390d808e01ccfbfa6 (patch)
tree91722763edd61364b7a2259cb95e7c086d2c515e /fluid/nodes/Fl_Type.cxx
parentc3571838cb10133aa913efd7523b9543a65459c1 (diff)
Cleaning up widget browser, renamed to Node_Browser.
Diffstat (limited to 'fluid/nodes/Fl_Type.cxx')
-rw-r--r--fluid/nodes/Fl_Type.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/fluid/nodes/Fl_Type.cxx b/fluid/nodes/Fl_Type.cxx
index 56a15175e..02b95888e 100644
--- a/fluid/nodes/Fl_Type.cxx
+++ b/fluid/nodes/Fl_Type.cxx
@@ -107,7 +107,7 @@
#include "nodes/Fl_Window_Type.h"
#include "nodes/Fl_Group_Type.h"
#include "rsrcs/pixmaps.h"
-#include "widgets/widget_browser.h"
+#include "widgets/Node_Browser.h"
#include <FL/Fl.H>
#include <FL/Fl_Browser_.H>
@@ -739,7 +739,7 @@ void Fl_Type::add(Fl_Type *anchor, Strategy strategy) {
\param[in] g pointer to a node within the tree
*/
void Fl_Type::insert(Fl_Type *g) {
- // 'this' is not in the Widget_Browser, so we must run the linked list to find the last entry
+ // 'this' is not in the Node_Browser, so we must run the linked list to find the last entry
Fl_Type *end = this;
while (end->next) end = end->next;
// 'this' will get the same parent as 'g'