Juergen Spitzmueller wrote:

> Jean-Marc Lasgouttes wrote:
>> Well, I do not like much passing an undocumented int to a function...
>> What do the different values mean?
> 
> 0: ct status "on" in this buffer
> 1: ct status "off" in this buffer
> -1: ct status "unknown" in this buffer

If you change these to an enum

enum CangeTracking
{
        /// Change tracking is "on" in this buffer
        CT_ON,
        /// Change tracking is "off" in this buffer
        CT_OFF,
        /// Change tracking is "unknown" in this buffer
        CT_UNKNOWN
};

it will probably be easier to convince Jean-Marc :-)


Georg

Reply via email to