aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-10-02 17:54:40 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-10-02 17:54:40 +0300
commit438f517fd49d1bb10d08d8a279533e82eb67801a (patch)
tree2aeb04502ad285f0d6a3109cc7e263b61e0d14a6 /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common
parent79be5ab4903b98e2960913d7b07ec49d14410b27 (diff)
downloadTango-438f517fd49d1bb10d08d8a279533e82eb67801a.tar.gz
Tango-438f517fd49d1bb10d08d8a279533e82eb67801a.zip
Working on RML module..
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common')
-rw-r--r--Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioViewModel.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioViewModel.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioViewModel.cs
index 63ff2119a..9ce79703f 100644
--- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioViewModel.cs
+++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/StudioViewModel.cs
@@ -109,7 +109,10 @@ namespace Tango.MachineStudio.Common
/// Called when the view has been attached
/// </summary>
/// <param name="view">The view.</param>
- protected abstract void OnViewAttached(TView view);
+ protected virtual void OnViewAttached(TView view)
+ {
+ //Do Nothing.
+ }
}
}