Index: src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/TextDocumentProperties.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/TextDocumentProperties.cs (.../TextDocumentProperties.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/TextDocumentProperties.cs (.../TextDocumentProperties.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -14,16 +14,25 @@ [ResourcesDescription(typeof(Resources), "TextDocumentProperties_Name_Description")] public string Name { - get { return data.Name; } - set { data.Name = value; } + get + { + return data.Name; + } + set + { + data.Name = value; + } } [ResourcesCategory(typeof(Resources), "Categories_General")] [ResourcesDisplayName(typeof(Resources), "TextDocumentProperties_ReadOnly_DisplayName")] [ResourcesDescription(typeof(Resources), "TextDocumentProperties_ReadOnly_Description")] public bool ReadOnly { - get { return data.ReadOnly; } + get + { + return data.ReadOnly; + } } [DynamicReadOnlyValidationMethod] @@ -32,4 +41,4 @@ return propertyName.Equals("Name") && data.ReadOnly; } } -} +} \ No newline at end of file