1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

Add const overload for ValueTreePropertyWithDefault::getPropertyID

This commit is contained in:
attila 2025-04-10 09:21:03 +02:00 committed by Attila Szarvas
parent fbcd416a84
commit 6ba9a380ef

View file

@ -230,6 +230,9 @@ public:
/** Returns the property ID of the referenced property. */
Identifier& getPropertyID() noexcept { return targetProperty; }
/** Returns the property ID of the referenced property. */
const Identifier& getPropertyID() const noexcept { return targetProperty; }
/** Returns the UndoManager that is being used. */
UndoManager* getUndoManager() noexcept { return undoManager; }