Commit c31a81a8 authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Minor fixes

parent 1f776381
Loading
Loading
Loading
Loading
+5 −6
Original line number Original line Diff line number Diff line
@@ -2465,10 +2465,9 @@ DocCite::DocCite(DocNode *parent,const QCString &target,const QCString &) //cont
  ASSERT(!target.isEmpty());
  ASSERT(!target.isEmpty());
  m_relPath = g_relPath;
  m_relPath = g_relPath;
  CiteInfo *cite = Doxygen::citeDict->find(target);
  CiteInfo *cite = Doxygen::citeDict->find(target);
  if (numBibFiles>0 && cite && cite -> text) // ref to citation
  if (numBibFiles>0 && cite && !cite->text.isEmpty()) // ref to citation
  {
  {
    m_text         = cite->text;
    m_text         = cite->text;
    if (m_text.isEmpty()) m_text = cite->label;
    m_ref          = cite->ref;
    m_ref          = cite->ref;
    m_anchor       = CiteConsts::anchorPrefix+cite->label;
    m_anchor       = CiteConsts::anchorPrefix+cite->label;
    m_file         = convertNameToFile(CiteConsts::fileName,FALSE,TRUE);
    m_file         = convertNameToFile(CiteConsts::fileName,FALSE,TRUE);
@@ -2476,7 +2475,7 @@ DocCite::DocCite(DocNode *parent,const QCString &target,const QCString &) //cont
    //    m_text.data(),m_ref.data(),m_file.data(),m_anchor.data());
    //    m_text.data(),m_ref.data(),m_file.data(),m_anchor.data());
    return;
    return;
  }
  }
  m_text = linkToText(SrcLangExt_Unknown,target,FALSE);
  m_text = target;
  warn_doc_error(g_fileName,doctokenizerYYlineno,"unable to resolve reference to `%s' for \\cite command",
  warn_doc_error(g_fileName,doctokenizerYYlineno,"unable to resolve reference to `%s' for \\cite command",
           qPrint(target));
           qPrint(target));
}
}