Commit 5f3d8499 authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Release-1.5.8-20090129

parent a0924f7d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.5.8
DOXYGEN Version 1.5.8-20090129

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

--------
Dimitri van Heesch (27 December 2008)
Dimitri van Heesch (29 January 2009)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.5.8
DOXYGEN Version 1.5.8_20090129

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) (27 December 2008)
Dimitri van Heesch (dimitri@stack.nl) (29 January 2009)
+4 −0
Original line number Diff line number Diff line
@@ -14,6 +14,10 @@ MOC_DIR = moc
RCC_DIR      = rcc
DEFINES     += QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII

macx-g++ {
  CONFIG += x86 ppc
}

# Input
HEADERS     += doxywizard.h version.h expert.h config.h helplabel.h \
               inputbool.h inputstring.h inputint.h inputstrlist.h wizard.h
+1 −1
Original line number Diff line number Diff line
@@ -543,7 +543,7 @@ EOF
EOF
  fi
fi
if test "$f_platform" = "hpux-g++"; then
if test "$f_platform" = "hpux-g++" -o "$f_platform" = "linux-g++"; then
  cat >> .tmakeconfig <<EOF
    TMAKE_CXXFLAGS += -D_LARGEFILE_SOURCE
EOF
+12 −5
Original line number Diff line number Diff line
@@ -133,7 +133,7 @@ class ClassDefImpl
    /*! The class this class is an instance of. */
    ClassDef *templateMaster;

    /*! class name with outer class scope, but without namespace scope. */
    /*! local class name which could be a typedef'ed alias name. */
    QCString className;

    /*! If this class is a Objective-C category, then this points to the
@@ -209,8 +209,8 @@ void ClassDefImpl::init(const char *defFileName, const char *name,
  membersMerged = FALSE;
  categoryOf = 0;
  usedOnly = FALSE;
  QCString ns;
  extractNamespaceName(name,className,ns);
  //QCString ns;
  //extractNamespaceName(name,className,ns);
  //printf("m_name=%s m_className=%s ns=%s\n",m_name.data(),m_className.data(),ns.data());

  if (((QCString)defFileName).right(5)!=".java" && 
@@ -3025,7 +3025,7 @@ QCString ClassDef::qualifiedNameWithTemplateParameters(

    if (!scName.isEmpty()) scName+=scopeSeparator;
  }
  scName+=m_impl->className;
  scName+=className();
  ArgumentList *al=0;
  bool isSpecialization = localName().find('<')!=-1;
  if (templateArguments())
@@ -3051,8 +3051,15 @@ QCString ClassDef::qualifiedNameWithTemplateParameters(
}

QCString ClassDef::className() const
{
  if (m_impl->className.isEmpty())
  {
    return localName();
  }
  else
  {
    return m_impl->className;
  }
};

void ClassDef::setClassName(const char *name)
Loading