Replaced spaces by tabs on files with incoherent indentations.

This commit is contained in:
GoldenCrystal
2014-11-16 21:27:57 +01:00
parent d0d4dcf98b
commit 9c3cd4207b
22 changed files with 54 additions and 53 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ namespace UnicodeCharacterInspector
storage = value;
NotifyPropertyChanged(propertyName);
return true;
}
}
return false;
}
}
@@ -47,7 +47,7 @@ namespace UnicodeCharacterInspector
{
codePoint = 0;
characterInfo = UnicodeInfo.GetCharInfo(0);
}
}
NotifyPropertyChanged();
UpdateDisplayText();
@@ -23,7 +23,7 @@ namespace UnicodeCharacterInspector
CodePoint = codePoint;
Character = char.ConvertFromUtf32(codePoint);
DisplayText = UnicodeInfo.GetDisplayText(codePoint);
}
}
}
private class CharacterCollection : INotifyCollectionChanged, IList<CharacterViewModel>
@@ -108,7 +108,7 @@ namespace UnicodeCharacterInspector
public CharacterInspectorViewModel()
{
characterCollection = new CharacterCollection(this);
}
}
private void NotifyCollectionChanged(NotifyCollectionChangedAction action)
{
@@ -164,7 +164,7 @@ namespace UnicodeCharacterInspector
NotifyPropertyChanged(nameof(SelectedCharacter));
selectedCharacterInfo.Character = null;
}
}
}
}
public ICollection<CharacterViewModel> Characters { get { return characterCollection; } }