integrate Revit 2025 SDK

This commit is contained in:
Jeremy Tammik
2024-04-11 13:47:20 +02:00
parent e786953544
commit f414362f2b
889 changed files with 26676 additions and 26865 deletions
@@ -41,7 +41,7 @@ namespace Revit.SDK.Samples.DockableDialogs.CS
/// </summary>
public void Make(ModelessCommandData commandData)
{
lock (this)
lock (m_data)
{
m_data = commandData;
}
@@ -52,7 +52,7 @@ namespace Revit.SDK.Samples.DockableDialogs.CS
/// </summary>
public ModelessCommandData Take()
{
lock (this)
lock (m_data)
{
return m_data;
}