(NOT READY) Update release

This commit is contained in:
Zihan Chen
2017-06-22 23:21:01 -07:00
parent 496e042251
commit a3671237eb
22 changed files with 832 additions and 604 deletions

View File

@@ -24,10 +24,10 @@ class Category : public Object, public ICategory
friend class ViewModel;
friend class Contact;
protected:
ICategory* parent;
WString name;
list::ObservableList<Ptr<ICategory>> folders;
list::ObservableList<Ptr<IContact>> contacts;
ICategory* parent;
WString name;
ObservableList<Ptr<ICategory>> folders;
ObservableList<Ptr<IContact>> contacts;
public:
Category(ICategory* _parent)
@@ -150,7 +150,7 @@ public:
class RootCategory : public Object, public ICategory
{
protected:
list::ObservableList<Ptr<ICategory>> folders;
ObservableList<Ptr<ICategory>> folders;
public:
RootCategory()