This commit is contained in:
Florian Rappl 2015-07-06 22:28:56 +02:00
Родитель b83d5c9595
Коммит ee7feedef5
1 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -30,7 +30,7 @@
: this()
{
this.name = name;
this.typeName = "CSSProperty";
this.typeName = "CssProperty";
this.children.Add(new CssRuleViewModel(value));
}
@ -93,13 +93,12 @@
}
public CssRuleViewModel(String value)
: this(typeof(CSSValue))
: this()
{
name = value;
typeName = "CssValue";
}
struct CSSValue { }
void Populate(ICssFontFaceRule font)
{
AddIfNotEmpty("Family", font.Family);