@@ -791,7 +791,7 @@ void Expert::loadConfig(const QString &fileName)
791791}
792792
793793void Expert::saveTopic (QTextStream &t,QDomElement &elem,TextCodecAdapter *codec,
794- bool brief,bool condensed)
794+ bool brief,bool condensed, bool convert )
795795{
796796 if (!brief)
797797 {
@@ -832,7 +832,7 @@ void Expert::saveTopic(QTextStream &t,QDomElement &elem,TextCodecAdapter *codec,
832832 if (option && !option->isEmpty ())
833833 {
834834 t << " " ;
835- option->writeValue (t,codec);
835+ option->writeValue (t,codec,convert );
836836 }
837837 t << " \n " ;
838838 }
@@ -843,7 +843,7 @@ void Expert::saveTopic(QTextStream &t,QDomElement &elem,TextCodecAdapter *codec,
843843 }
844844}
845845
846- bool Expert::writeConfig (QTextStream &t,bool brief, bool condensed)
846+ bool Expert::writeConfig (QTextStream &t,bool brief, bool condensed, bool convert )
847847{
848848 // write global header
849849 t << " # Doxyfile " << getDoxygenVersion ().c_str () << " \n\n " ;
@@ -859,7 +859,7 @@ bool Expert::writeConfig(QTextStream &t,bool brief, bool condensed)
859859 {
860860 if (childElem.tagName ()==SA (" group" ))
861861 {
862- saveTopic (t,childElem,&codec,brief,condensed);
862+ saveTopic (t,childElem,&codec,brief,condensed,convert );
863863 }
864864 childElem = childElem.nextSiblingElement ();
865865 }
0 commit comments