void RemoveOsModule(wxString mod)
{
    osModules.Remove(mod);
    theDatabase->reload(true);
    theMainWin->Reset();
}
TEST(StringSetTest, RemoveString) {
  // Removes a given string from the set.
  set.Remove(str);
  EXPECT_FALSE(set.Contains(str));
}
void RemoveOsFunction(wxString function)
{
    osFunctions.Remove(function);
    theDatabase->reload(true);
    theMainWin->Reset();
}