pbrown@redhat.com wrote: > On Fri, 28 May 1999, CVS by granroth wrote: > > o KConfig stuff still seems to be broken... I thought that it was supposed > > to remain source compatible?? > > everything but the iterators should be source compatible. Okay.. I found out what was going on. kconfigbase.h in 1.1.1 insists on the following prototype: int readListEntry( const char* pKey, QStrList &list, char sep = ',' ) const; The "new" kconfigbase.h insists on: int readListEntry( const QString& pKey, QStrList &list, char sep = ';' ) const; Whoops! Semi-colons and commas may look similar to us... but computers get really confused and read in all "old" entries as one single entry instead of a list. :-) -- Kurt Granroth | granroth@kde.org KDE Developer/Evangelist | http://www.pobox.com/~kurt_granroth KDE -- Putting a Friendly Face on Linux