Commit 83fc120e authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Minor changes to the way the code for config options is generated (thanks to Albert for the patch)

parent e2597756
Loading
Loading
Loading
Loading
+9 −0
Original line number Original line Diff line number Diff line
@@ -15,4 +15,13 @@ bool parseConfig(


void writeStringValue(QTextStream &t,QTextCodec *codec,const QString &s);
void writeStringValue(QTextStream &t,QTextCodec *codec,const QString &s);


// directly copied from ../../src/config.h to be consistent
enum
{
 /*! Maximum length of an option in the config file. Used for
  *  alignment purposes.
  */
  MAX_OPTION_LENGTH = 23
};

#endif
#endif
Loading