Commit 8dc4ff6d authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Release-1.8.3.1-20130512

parent ebf4b364
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.8.3.1-20130402
DOXYGEN Version 1.8.3.1-20130512

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

--------
Dimitri van Heesch (02 April 2013)
Dimitri van Heesch (12 May 2013)
+1 −1
Original line number Diff line number Diff line
@@ -82,7 +82,7 @@ pdf: docs
DISTFILES =  Doxyfile libmd5 addon tmake doc examples bin lib objects \
             qtools src configure configure.bin Makefile.in Makefile.win_nmake.in \
             Makefile.win_make.in INSTALL LANGUAGE.HOWTO LICENSE PLATFORMS \
             VERSION packages winbuild
             VERSION packages winbuild jquery

archive: clean
	tar zcvf dx`date +%y%m%d`.tgz $(DISTFILES)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.8.3.1_20130402
DOXYGEN Version 1.8.3.1_20130512

Please read INSTALL for compilation instructions.

@@ -26,4 +26,4 @@ forum.

Enjoy,

Dimitri van Heesch (dimitri@stack.nl) (02 April 2013)
Dimitri van Heesch (dimitri@stack.nl) (12 May 2013)
+8 −1
Original line number Diff line number Diff line
@@ -270,11 +270,18 @@ QWidget *Expert::createTopicWidget(QDomElement &elem)
  child = elem.firstChildElement();
  while (!child.isNull())
  {
    QString setting = child.attribute(SA("setting"));
    QString dependsOn = child.attribute(SA("depends"));
    QString id        = child.attribute(SA("id"));
    if (!dependsOn.isEmpty())
    if (!dependsOn.isEmpty() && 
        (setting.isEmpty() || IS_SUPPORTED(setting.toAscii())))
    {
       Input *parentOption = m_options[dependsOn];
       if (parentOption==0)
       {
         printf("%s has depends=%s that is not valid\n",
             qPrintable(id),qPrintable(dependsOn));
       }
       Input *thisOption   = m_options[id];
       Q_ASSERT(parentOption);
       Q_ASSERT(thisOption);
+3 −1
Original line number Diff line number Diff line
@@ -43,6 +43,8 @@ void InputBool::setEnabled(bool b)
{ 
  m_enabled = b;
  m_cb->setEnabled(b); 
  m_lab->setEnabled(b); 
  updateDefault();
  updateDependencies();
}

@@ -69,7 +71,7 @@ void InputBool::setValue( bool s )

void InputBool::updateDefault()
{
  if (m_state==m_default)
  if (m_state==m_default || !m_lab->isEnabled())
  {
    m_lab->setText(QString::fromAscii("<qt>")+m_id+QString::fromAscii("</qt"));
  }
Loading