wxPGProperty* p;
wxPGProperty* origParent =
- pgman->GetProperty(wxT("Window Styles"))->GetParent();
+ pgman->GetProperty("Window Styles")->GetParent();
- p = pgman->RemoveProperty(wxT("Window Styles"));
+ // For testing purposes, let's set some custom cell colours
+ p = pgman->GetProperty("Window Styles");
+ p->SetCell(2, wxPGCell("style"));
+ p = pgman->RemoveProperty("Window Styles");
pgman->Refresh();
pgman->Update();
pgman->AppendIn(origParent, p);
+ wxASSERT( p->GetCell(2).GetText() == "style");
pgman->Refresh();
pgman->Update();
}