Commit 26b5069c authored by dimitri's avatar dimitri
Browse files

Release-1.1.2-20000430

parent e2b4a623
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
DOXYGEN Version 1.1.2-20000423
DOXYGEN Version 1.1.2-20000430

CONTENTS
--------
@@ -15,8 +15,8 @@ INSTALLATION INSTRUCTIONS FOR UNIX:

1.  Unpack the archive, unless you already have:
   
     gunzip doxygen-1.1.2-20000423.src.tar.gz    # uncompress the archive
     tar xf doxygen-1.1.2-20000423.src.tar       # unpack it
     gunzip doxygen-1.1.2-20000430.src.tar.gz    # uncompress the archive
     tar xf doxygen-1.1.2-20000430.src.tar       # unpack it

2.  Run the configure script:
 
@@ -252,4 +252,4 @@ The latest version of doxygen can be obtained at

Enjoy,

Dimitri van Heesch (23 April 2000)
Dimitri van Heesch (30 April 2000)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.1.2-20000423
DOXYGEN Version 1.1.2-20000430

Please read INSTALL for compilation instructions.

@@ -7,4 +7,4 @@ The latest version of doxygen can be obtained at

Enjoy,

Dimitri van Heesch (23 April 2000)
Dimitri van Heesch (30 April 2000)
+1 −1
Original line number Diff line number Diff line
1.1.2-20000423
1.1.2-20000430
+60 −46
Original line number Diff line number Diff line
@@ -335,8 +335,17 @@ static void substEnvVarsInStrList(QStrList &sl)
  while (s)
  {
    QCString result(s);
    bool wasQuoted = (result.find(' ')!=-1) || (result.find('\t')!=-1);
    substEnvVarsInString(result);

    if (!wasQuoted) /* as a result of the expansion, a single string
		       may have expanded into a list, which we'll
		       add to sl. If the orginal string already 
		       contained multiple elements no splitting is done! */
    {



      int l=result.length();
      int i,p=0;
      // skip spaces
@@ -395,6 +404,11 @@ static void substEnvVarsInStrList(QStrList &sl)
      else                // just removed last item
	s = 0;
    }
    else // just goto the next element in the list
    {
      s=sl.next();
    }
  }
}


+10 −5
Original line number Diff line number Diff line
@@ -21,9 +21,10 @@
#include <qfile.h>
#include <qlist.h>
#include <qdict.h>
#include <qstringlist.h>
#include <qstrlist.h>

#include <stdio.h>
#include <stdlib.h>

static QString spaces="                                                ";

@@ -122,7 +123,9 @@ class ConfigOption
      stringToC(t,longDesc,"    t << \"# ","\\n\";");
      t << "    t << \"\\n\";" << endl;
      t << "  }" << endl;
      t << "  t << \"" << cfgName << " = \";" << endl;
      t << "  t << \"" << cfgName;
      t << spaces.left(22-cfgName.length());
      t << "= \";" << endl;
      t << "  " << writeFunc << "(t,Config::" << varName << ");" << endl;
      t << "  t << \"\\n\";" << endl;
    }
@@ -406,9 +409,11 @@ class ConfigString : public ConfigOption
              << ",SIGNAL(changed()),this,SIGNAL(changed()));" << endl;
            if (m_values.count()>0)
            {
              for ( QStringList::Iterator it = m_values.begin(); it != m_values.end(); ++it ) 
              char *s = m_values.first();
              while (s)
              {
                 t << "  " << varName << "->addValue(\"" << (*it) << "\");" << endl;
                t << "  " << varName << "->addValue(\"" << s << "\");" << endl;
                s = m_values.next();
              }
            }
          }  
@@ -434,7 +439,7 @@ class ConfigString : public ConfigOption
  private:
    ConfigInfo *m_parent;
    WidgetType m_widgetType;
    QStringList m_values;
    QStrList m_values;
};

class ConfigInt : public ConfigOption
Loading