Commit 08b4b96e authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Release-1.3.6-20040427

parent f08c77a2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.3.6-20040413
DOXYGEN Version 1.3.6-20040427

Please read the installation section of the manual 
(http://www.doxygen.org/install.html) for instructions.

--------
Dimitri van Heesch (13 April 2004)
Dimitri van Heesch (27 April 2004)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.3.6_20040413
DOXYGEN Version 1.3.6_20040427

Please read INSTALL for compilation instructions.

@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives.

Enjoy,

Dimitri van Heesch (dimitri@stack.nl) (13 April 2004)
Dimitri van Heesch (dimitri@stack.nl) (27 April 2004)
+1 −1
Original line number Diff line number Diff line
1.3.6-20040413
1.3.6-20040427
+9 −1
Original line number Diff line number Diff line
@@ -14,7 +14,11 @@

#include "inputbool.h"
#include "pagewidget.h"
#if QT_VERSION >= 300
#include <qstylefactory.h>
#else
#include <qwindowsstyle.h>
#endif
#include <qlayout.h>

InputBool::InputBool( const QString & text, PageWidget * parent, bool &flag )
@@ -25,9 +29,13 @@ InputBool::InputBool( const QString & text, PageWidget * parent, bool &flag )
  layout->addWidget(cb);
  layout->addStretch(10);

#if QT_VERSION >= 300
  QStyle *winStyle = QStyleFactory::create("windows");
#else
  QWindowsStyle *winStyle = new QWindowsStyle();
#endif
  cb->setChecked( flag );
  cb->setStyle( winStyle );
  if (winStyle) cb->setStyle( winStyle );
  cb->setMinimumSize( sizeHint() );

  connect( cb, SIGNAL(toggled(bool)), SLOT(setState(bool)) );
+4 −0
Original line number Diff line number Diff line
@@ -397,6 +397,10 @@ echo "using $f_perl";
test -f .makeconfig && rm .makeconfig
test -f .tmakeconfig && rm .tmakeconfig

if test -z $PWD; then
  PWD=`pwd`
fi

cat > .makeconfig <<EOF
DOXYGEN   = $PWD
TMAKEPATH = $PWD/tmake/lib/$f_platform
Loading