diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-08 15:28:10 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-08 15:28:10 +0200 |
| commit | d1e8b5dc2cfa93bf042773b4bf04a0f0bfc1f53d (patch) | |
| tree | 1bcd27f1461650204ba2e7b340f271ce703b1a41 /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels | |
| parent | 0ec56a54ca0c64a2f7ba402a1b99b3c217cd5ae5 (diff) | |
| download | Tango-d1e8b5dc2cfa93bf042773b4bf04a0f0bfc1f53d.tar.gz Tango-d1e8b5dc2cfa93bf042773b4bf04a0f0bfc1f53d.zip | |
Added code comments for:
CodeGeneration.
Core.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/LoadingViewVM.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/LoadingViewVM.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/LoadingViewVM.cs index f213af0d4..5d341b835 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/LoadingViewVM.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/ViewModels/LoadingViewVM.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; -using Tango.Core.Threading; +using Tango.Core.Helpers; using Tango.DAL.Observables; using Tango.MachineStudio.Common.Modules; using Tango.MachineStudio.Common.Navigation; @@ -29,7 +29,7 @@ namespace Tango.MachineStudio.UI.ViewModels private void Load() { - StaThreadHelper.StartStaThread(() => + ThreadsHelper.StartStaThread(() => { try { |
