On Wednesday 17 July 2002 12:06 pm, Herbert Voss wrote: > Angus Leeming wrote: > > You can "delete" but you cannot save this deletion because the syntax > > does not exist to represent it. Hence: > > > > I believe that it's impossible to delete the global preferences as > > there's no fig2eps disable > > syntax for the preferences file. > > a given fig2eps can be overwritten or deleted (make it unused) > by the user. what feature are you missing???
Perhaps you looking at the code base? FormPreferences simply removes the converter from the list of converters available to this session. It cannot, therefore, write this info to file. I understand that converter supports "none". If, instead of erasing the entry, it was "none"-d, then that might work. I'm not going to try however. If interested have a go. Angus bool FormPreferences::Converters::erase() { string const from = GetFrom(); string const to = GetTo(); local_converters.erase(from, to); UpdateBrowser(); return true; }