diff options
| author | Matthias Melcher <github@matthiasm.com> | 2025-11-29 12:38:55 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2025-11-29 12:38:55 +0100 |
| commit | 725be0116f1d4dbcd64a99b555572341f2d29eda (patch) | |
| tree | f61feaf7a9700cbc9777a46b1d9fadd48506b906 /fluid/nodes/Node.h | |
| parent | 92a1558a0e7082e4c7462790643f0957fb887537 (diff) | |
Fluid: Fix unique id reader.
Diffstat (limited to 'fluid/nodes/Node.h')
| -rw-r--r-- | fluid/nodes/Node.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fluid/nodes/Node.h b/fluid/nodes/Node.h index a5882233a..f6fce09b4 100644 --- a/fluid/nodes/Node.h +++ b/fluid/nodes/Node.h @@ -307,6 +307,7 @@ public: int has_function(const char*, const char*) const; unsigned short set_uid(unsigned short suggested_uid=0); + unsigned short ensure_unique_uid() { return set_uid(uid_); } unsigned short get_uid() { return uid_; } }; |
