示例#1
0
/*
 * add another match to the list.
 */
local void
add_match(int level, Path where, Natural ncases, Natural c_index)
{
	m_end->level = level;
	m_end->where = p_save(p_reverse(where));
	m_end->ncases = ncases;
	m_end->index = c_index;
	m_end++;
}
示例#2
0
bool ProfileModel::saveProfilesToFile(const QString& filename) {
  KConfig config(filename);
  p_save(&config);
  return TRUE;
}
示例#3
0
void ProfileModel::commit() {
  KConfig config;
  p_save(&config);
}